diff --git a/src/clang_cursor.cc b/src/clang_cursor.cc index 44a29907..c5aedc00 100644 --- a/src/clang_cursor.cc +++ b/src/clang_cursor.cc @@ -60,6 +60,7 @@ ClangType ClangType::strip_qualifiers() const { switch (cx_type.kind) { case CXType_LValueReference: case CXType_Pointer: + case CXType_RValueReference: return clang_getPointeeType(cx_type); default: break;