[all-commits] [llvm/llvm-project] d70e05: [clang-format] Parse double-square attributes as p...
Alexander Richardson via All-commits
all-commits at lists.llvm.org
Wed Sep 2 10:35:48 PDT 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: d70e05c9e36ada3ea6341764a3bc34de7de7d8dd
https://github.com/llvm/llvm-project/commit/d70e05c9e36ada3ea6341764a3bc34de7de7d8dd
Author: Alex Richardson <Alexander.Richardson at cl.cam.ac.uk>
Date: 2020-09-02 (Wed, 02 Sep 2020)
Changed paths:
M clang/lib/Format/TokenAnnotator.cpp
M clang/unittests/Format/FormatTest.cpp
Log Message:
-----------
[clang-format] Parse double-square attributes as pointer qualifiers
Before: x = (foo *[[clang::attr]]) * v;
After: x = (foo *[[clang::attr]])*v;
Reviewed By: aaron.ballman
Differential Revision: https://reviews.llvm.org/D86721
More information about the All-commits
mailing list