From 1144e74d0c826e4def584c08b673255d92c5d1f3 Mon Sep 17 00:00:00 2001 From: Alexander Penev Date: Wed, 1 May 2024 21:14:35 +0000 Subject: [PATCH] Formatting --- include/clang/Interpreter/CppInterOp.h | 2 +- unittests/CppInterOp/InterpreterTest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/Interpreter/CppInterOp.h b/include/clang/Interpreter/CppInterOp.h index 121afdc25..77b2a37d3 100644 --- a/include/clang/Interpreter/CppInterOp.h +++ b/include/clang/Interpreter/CppInterOp.h @@ -652,7 +652,7 @@ namespace Cpp { /// Append all Code completion suggestions to Results. ///\param[in] code - code fragmet to complete ///\param[out] Results - CC suggestions for code fragment. Suggestions are - ///appended. + /// appended. CPPINTEROP_API void CodeComplete(const char* code, std::vector& Results); diff --git a/unittests/CppInterOp/InterpreterTest.cpp b/unittests/CppInterOp/InterpreterTest.cpp index 83222cc6a..a019333f5 100644 --- a/unittests/CppInterOp/InterpreterTest.cpp +++ b/unittests/CppInterOp/InterpreterTest.cpp @@ -114,7 +114,7 @@ TEST(InterpreterTest, CodeCompletion) { // We check only for 'float' and 'foo', because they // must be present in the result. Other hints may appear // there, depending on the implementation, but these two - // are required to say that the test is working. + // are required to say that the test is working. size_t cnt = 0; for (auto& r : cc) { if (r == "float" || r == "foo")