File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ BinPackParameters: false
9
9
BreakBeforeBinaryOperators : All
10
10
BreakConstructorInitializers : BeforeColon
11
11
ColumnLimit : 99
12
+ CommentPragmas : ' NOLINT:.*|^ IWYU pragma:'
12
13
IncludeBlocks : Regroup
13
14
IndentCaseLabels : true
14
15
IndentPPDirectives : AfterHash
Original file line number Diff line number Diff line change 5
5
6
6
#if defined(_MSC_VER) && _MSC_VER < 1910
7
7
// We get some really long type names here which causes MSVC 2015 to emit warnings
8
- # pragma warning( \
9
- disable : 4503 ) // warning C4503: decorated name length exceeded, name was truncated
8
+ # pragma warning(disable : 4503) // NOLINT: warning C4503: decorated name length exceeded, name was truncated
10
9
#endif
11
10
12
11
namespace py = pybind11;
You can’t perform that action at this time.
0 commit comments