summaryrefslogtreecommitdiff
path: root/include/clang/Sema
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2019-08-31 01:00:37 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2019-08-31 01:00:37 +0000
commitad57483a9ff0c36ca642528b81fbb05641e5d7f1 (patch)
tree3b6e5b61b45ca88cc055f83ee2af00912328b4fb /include/clang/Sema
parent101ffdb0168928e0650f7c5990f098d0d0b4ca86 (diff)
downloadclang-ad57483a9ff0c36ca642528b81fbb05641e5d7f1.tar.gz
[c++20] Add support for designated direct-list-initialization syntax.
This completes the implementation of P0329R4. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@370558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema')
-rw-r--r--include/clang/Sema/Sema.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h
index 0ca74e58e0..d7581a1673 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -4644,7 +4644,7 @@ public:
SourceLocation RBraceLoc);
ExprResult ActOnDesignatedInitializer(Designation &Desig,
- SourceLocation Loc,
+ SourceLocation EqualOrColonLoc,
bool GNUSyntax,
ExprResult Init);