aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h')
-rw-r--r--contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h b/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
index c57199f0fdf1..c9a2d19f4ebc 100644
--- a/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
+++ b/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
@@ -63,7 +63,7 @@ public:
return *this;
}
- OptionalDiagnostic &operator<<(const APFixedPoint &FX) {
+ OptionalDiagnostic &operator<<(const llvm::APFixedPoint &FX) {
if (Diag) {
SmallVector<char, 32> Buffer;
FX.toString(Buffer);