Skip to content

Commit 2580333

Browse files
Use clang namespace in converTo interface
This is based on a build error in the CI Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8b1a615 commit 2580333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Interpreter/Compatibility.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ template <typename T> inline T convertTo(cling::Value V) {
410410
return V.castAs<T>();
411411
}
412412
#else // CLANG_REPL
413-
template <typename T> inline T convertTo(cling::Value V) {
413+
template <typename T> inline T convertTo(clang::Value V) {
414414
return V.convertTo<T>();
415415
}
416416
#endif // USE_CLING

0 commit comments

Comments
 (0)