Search:
Type: Posts; User: Richard.J
Search:
Search took 0.23 seconds.
-
November 27th, 2020, 01:00 PM
Not sure what inet_addr makes with leading zeros, but maybe that is a problem? As Victor's example shows, ping takes leading zeros as indication of a number in octal format.
-
November 27th, 2020, 12:40 PM
We are using hippomock for our unit testing, and we had to set this property to "yes" on a Windows Server 2016 or our Windows API mocks weren't called. No-one figured out why.
-
September 28th, 2020, 04:56 AM
Does this help?
http://www.gnu.org/software/libiconv
-
August 7th, 2019, 01:39 AM
Most likely, you cannot add elements to the map outside any function, i.e. in the global scope.
However, something like this should work:
map<string, unsigned int> electron_lookup{
{"C",...
-
October 27th, 2017, 10:56 AM
If you want to stick to the iterator approach:
for (BriteNodeInfoList::iterator it = m_briteNodeInfoList.begin(), endIt = m_briteNodeInfoList.End(); it != endIt; ++it)
{
os << it->nodeId...
-
August 16th, 2017, 09:01 AM
I don't think that any of the proposed solutions are really readable.
What about the use of exceptions? If any of the operations throw an exception in the case of an error, the calling function...
-
August 4th, 2017, 05:46 AM
Not sure about the thread pool functionality, but I assume your main() functions returns before any of the threads had a chance to execute.
-
June 22nd, 2017, 01:13 AM
You have forward declared and are using a function binarySearch with 3 parameters, but the definition of the method in your code has 5 parameters. Thus the error message.
-
January 5th, 2017, 04:43 AM
John, did you consider realloc?
-
December 7th, 2016, 02:04 AM
After creating the socket, use setsockopt with SO_REUSEADDR
int enable = 1;
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &enable, sizeof(int));
-
August 12th, 2016, 03:36 AM
Does this link help?
https://msdn.microsoft.com/de-de/library/afzk3475.aspx
-
January 28th, 2016, 07:36 AM
The find_if algorithm iterates over the elements of the container. In your case, the container is map<TDummyKey,TDummy>, and each element in the container is a pair<const TDummyKey, TDummy>.
Your...
-
January 26th, 2016, 05:51 AM
I assume your server is not listening on port 50007, since you #define'd SERVER_PORT htons(50007).
You can verify this by using TcpView (or netstat) and check what port your server is listening on....
-
January 21st, 2016, 05:01 AM
A common index to be used in different kinds of maps seems odd to me. In addition, your Create method must take a M& to work correctly (like in laserlight's example).
Apart from that, I am not sure...
-
January 20th, 2016, 12:56 PM
All you need is the correct definition of your Create method
void Create(std::map& map, const Account& object) const
This assumes that Create does not modify the object passed into it and...
-
January 20th, 2016, 11:59 AM
Look up for the '*' in the format string, like
sprintf(str, "%0*d", 8, i);
(not tested, though). This should make you able to replace the hard-coded 8 by a variable.
-
December 4th, 2015, 02:36 AM
The linker expects both classes to be defined in the namespace 'serial'. From the code you posted, it's not clear if you really defined the classes in this namespace.
-
November 19th, 2015, 02:29 AM
Well, I know a bit about virtual destructors. What I don't understand is how a class that wraps an iterator influences the destruction of the map. How are these things related?
-
November 18th, 2015, 05:50 AM
I am playing around with 'type erasure' (see these links: https://akrzemi1.wordpress.com/2013/11/18/type-erasure-part-i/, http://www.artima.com/cppsource/type_erasure2.html).
For this purpose, I...
-
October 30th, 2015, 02:25 AM
The first thing I can spot is that both of your for-loops only end when the loop variable overflows, i.e. primecount is alsways <= 8 until it wraps from -2147483648 to 2147483647 and vice versa for...
-
October 20th, 2015, 07:41 AM
Well, if you just use the pointer to store a reference to the 'parent' class, you must not delete it. Otherwise, in the CreateSessInfo destructor you would delete your object containing the...
-
October 20th, 2015, 07:16 AM
You don't show where pClassInstance1 and pClassInstance2 are created (using new).
If they are created inside CClass/DedBearerInfo, then you have to delete them in the destructor. You might be better...
-
June 29th, 2015, 03:28 AM
Do you mean
return boost::shared_ptr<AStarPath>(new AStarPath(from, transitions, totalCost));
-
June 24th, 2015, 01:41 AM
std::set expects operator< to be defined for AABB. Either provide that or create the std::set<AABB, customCompare>...
Lookup "relational operators" here:...
-
But most of all: you have started a question, got no replies, then edited your original post and replaced your question with a completely different one. You are here long enough to know that this is...
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|