Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-penev committed May 1, 2024
1 parent 26e8aee commit 1144e74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/clang/Interpreter/CppInterOp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::string>& Results);

Expand Down
2 changes: 1 addition & 1 deletion unittests/CppInterOp/InterpreterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 1144e74

Please sign in to comment.