diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-06 17:52:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-06 17:52:29 +0000 |
commit | 32212f9d000e6bb631499afce43cd13fc0387413 (patch) | |
tree | 9f6c374f7456c0ef0425e9b03f899a91767694cb /test/CXX | |
parent | 0dc7509ed7f775f74106fbac37473da39b6c8e3a (diff) |
remove curly quotes, patch by Dimitry Andric!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CXX')
-rw-r--r-- | test/CXX/temp/temp.spec/temp.explicit/p12.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/temp/temp.spec/temp.explicit/p12.cpp b/test/CXX/temp/temp.spec/temp.explicit/p12.cpp index 912b8e17bb..c7564868f8 100644 --- a/test/CXX/temp/temp.spec/temp.explicit/p12.cpp +++ b/test/CXX/temp/temp.spec/temp.explicit/p12.cpp @@ -2,5 +2,5 @@ char* p = 0; template<class T> T g(T x = &p) { return x; } -template int g<int>(int); // OK even though &p isn’t an int. +template int g<int>(int); // OK even though &p isn't an int. |