aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/OperatorKinds.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Basic/OperatorKinds.h')
-rw-r--r--include/clang/Basic/OperatorKinds.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Basic/OperatorKinds.h b/include/clang/Basic/OperatorKinds.h
index 790b75ba3af3..c0a95051a72d 100644
--- a/include/clang/Basic/OperatorKinds.h
+++ b/include/clang/Basic/OperatorKinds.h
@@ -26,7 +26,10 @@ enum OverloadedOperatorKind {
NUM_OVERLOADED_OPERATORS
};
-
+/// \brief Retrieve the spelling of the given overloaded operator, without
+/// the preceding "operator" keyword.
+const char *getOperatorSpelling(OverloadedOperatorKind Operator);
+
} // end namespace clang
#endif