From abd2a3e8bc251a693d4d09819fd76f2e482c21ff Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Mon, 17 Oct 2011 21:17:53 +0000 Subject: [PATCH] Code completion chunks are pod-like. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142252 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Sema/CodeCompleteConsumer.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/include/clang/Sema/CodeCompleteConsumer.h b/include/clang/Sema/CodeCompleteConsumer.h index 9e2d60d3e0..69003d0b4e 100644 --- a/include/clang/Sema/CodeCompleteConsumer.h +++ b/include/clang/Sema/CodeCompleteConsumer.h @@ -501,7 +501,17 @@ public: return CopyString(StringRef(String)); } }; - + +} // end namespace clang + +namespace llvm { + template <> struct isPodLike { + static const bool value = true; + }; +} + +namespace clang { + /// \brief A builder class used to construct new code-completion strings. class CodeCompletionBuilder { public: -- 2.40.0