diff options
-rw-r--r-- | Source/cmXCodeObject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index de06025..c44daa2 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -194,7 +194,7 @@ void cmXCodeObject::SetString(const char* s) cmSystemTools::ReplaceString(ss, "\"", "\\\""); bool needQuote = false; this->String = ""; - if(ss.find_first_of(" <>.+-=") != ss.npos) + if(ss.find_first_of(" <>.+-=@") != ss.npos) { needQuote = true; } |