Skip to content

Commit 2a3c103

Browse files
committed
fix-up
1 parent 73175c5 commit 2a3c103

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/clang-c/CXCppInterOp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ TInterp_t clang_interpreter_takeInterpreterAsPtr(CXInterpreter I);
5959
/**
6060
* Undo N previous incremental inputs.
6161
*/
62-
CXErrorCode clang_interpreter_Undo(CXInterpreter I, unsigned int N);
62+
enum CXErrorCode clang_interpreter_Undo(CXInterpreter I, unsigned int N);
6363

6464
/**
6565
* Dispose of the given interpreter context.

lib/Interpreter/CXCppInterOp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ TInterp_t clang_interpreter_takeInterpreterAsPtr(CXInterpreter I) {
7070
return static_cast<CXInterpreterImpl*>(I)->Interp.release();
7171
}
7272

73-
CXErrorCode clang_interpreter_Undo(CXInterpreter I, unsigned int N) {
73+
enum CXErrorCode clang_interpreter_Undo(CXInterpreter I, unsigned int N) {
7474
return getInterpreter(I)->Undo(N) ? CXError_Failure : CXError_Success;
7575
}
7676

0 commit comments

Comments
 (0)