Skip to content
Snippets Groups Projects
Commit 5d7593bf authored by Brad King's avatar Brad King
Browse files

BUG: Avoid duplicate definition by using cmsys_STL_STRING_NEQ_CHAR_DEFINED and...

BUG: Avoid duplicate definition by using cmsys_STL_STRING_NEQ_CHAR_DEFINED and cmsys_STL_STRING_NO_NEQ_CHAR.
parent f0b10ad0
No related branches found
No related tags found
No related merge requests found
......@@ -150,8 +150,11 @@ using ::ends;
using ::flush;
}
// The string class is missing these operators so add them
#if !defined(cmsys_STL_STRING_NEQ_CHAR_DEFINED)
# define cmsys_STL_STRING_NO_NEQ_CHAR
inline bool operator!=(std::string const& a, const char* b)
{ return !(a==std::string(b)); }
#endif
inline bool operator==(std::string const& a, const char* b)
{ return (a==std::string(b)); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment