Bill Wendling fbaa37937f On Darwin, the string header file isn't 64-bit clean. The use of
"-Wshorten-64-to-32 -Werror" will cause a failure when compiling this complex
program:

#include <string>

class Path {
  mutable std::string path;
public:
  bool operator == (const Path &that) {
    return path == that.path;
  }
};

Using strcmp gets us past this annoying error.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51218 91177308-0d34-0410-b5e6-96231b3b80d8
2008-05-17 09:10:40 +00:00
..
2008-05-15 22:13:02 +00:00
2008-05-15 22:13:02 +00:00
2008-04-30 04:56:14 +00:00
2008-04-01 04:00:45 +00:00
2008-05-16 22:42:11 +00:00
2008-04-16 20:45:31 +00:00
2008-03-25 22:06:05 +00:00
2008-05-14 00:43:10 +00:00
2008-05-14 00:39:39 +00:00
2008-05-10 08:32:32 +00:00