diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-02-25 19:48:02 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-02-25 19:48:02 +0000 |
| commit | 441f24118a292e1c8052cf0f4308749cef9968cc (patch) | |
| tree | c40744021757a16b8113a45af15036f1bff918fb /clang/test | |
| parent | a374e60e57fd412b9a357e58ca8676300d485ea7 (diff) | |
| download | bcm5719-llvm-441f24118a292e1c8052cf0f4308749cef9968cc.tar.gz bcm5719-llvm-441f24118a292e1c8052cf0f4308749cef9968cc.zip | |
Include the appropriate header for malloc
llvm-svn: 65471
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/SemaTemplate/class-template-spec.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/class-template-spec.cpp b/clang/test/SemaTemplate/class-template-spec.cpp index 86cd52c3e36..4de220a77cb 100644 --- a/clang/test/SemaTemplate/class-template-spec.cpp +++ b/clang/test/SemaTemplate/class-template-spec.cpp @@ -41,4 +41,5 @@ void testme(X<int_type> *x1, X<float, int> *x2) { x2->bar(); // okay: refers to #2 } -// FIXME: diagnose specializations in a different namespace +// Diagnose specializations in a different namespace +class A<double> { }; |

