vote up 1 vote down star

SO, I am in the process of resolving the port of a 32bit app to 64 bit. When I compile for x64 I see a warning come up for the line ` CString sig; sig = "something"; sig = sig.left(strlen(something defined)); <<<<<<

` So, I get the warning for the sig.left where it implicitly converts the strlen value to int. Since in x64 strlen returns the 64bit size_t, i am getting the warning. what are my options of fixing this.. any alternate method ?

Thanks

flag

Since you are porting existing code, you are probably stuck with CString, but in general you should probably use the standard std::string. – Dima Sep 25 at 19:43

1 Answer

vote up 3 vote down check

strlen always returns size_t. However, size_t is a different width on 64bit and 32bit operating systems.

CString.left, however, expects an int. Your code should be fine (provided your strings won't be too long to overrun an int value), but the compiler will warn you that you're causing this problem.

You can ignore the warning by using a cast. If you wanted to be "safe", you could do so by adding checking.

The required cast would be as simple as:

CString sig; 
sig = "something"; 
sig = sig.left((int)strlen(something_defined));
link|flag
the short casting fixed my warning. But I want to explore re-writing it when there is time. – Gentoo Sep 25 at 20:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.