diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-06 04:20:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-06 04:20:07 +0000 |
commit | 39caea961530bc95d19114ab546ebcdb229263c9 (patch) | |
tree | 56c12a0fc66975ad2eeaa6312c1273a366cc58a8 | |
parent | c002726237cc13f9c1f97f1d672eebc55f02080c (diff) |
make it more clear what 'foo' is
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44653 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | AST/Type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AST/Type.cpp b/AST/Type.cpp index e1d20831fc..4befdcb542 100644 --- a/AST/Type.cpp +++ b/AST/Type.cpp @@ -579,7 +579,7 @@ bool RecordType::classof(const Type *T) { //===----------------------------------------------------------------------===// void QualType::dump(const char *msg) const { - std::string R = "foo"; + std::string R = "identifier"; getAsStringInternal(R); if (msg) fprintf(stderr, "%s: %s\n", msg, R.c_str()); |