Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Dec 31, 2024
1 parent 610363a commit ce7bc2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ namespace base {
// True if X is #defined to nothing, false if X is #defined to an identifier or
// is not defined. This macro should not be used with macros that expand to
// something other than an identifier.
#define PRINCIPIA_MACRO_IS_EMPTY(X) \
(PRINCIPIA_CONCATENATE_SENTINEL(X) == \
('S' << 000 | 'E' << 010 | 'N' << 020 | 'T' << 030 | 'I' << 040 | \
'N' << 050 | 'E' << 060 | 'L' << 070))
#define PRINCIPIA_MACRO_IS_EMPTY(X) \
(PRINCIPIA_CONCATENATE_SENTINEL(X) == \
('S' << 000 | 'E' << 010 | 'N' << 020 | 'T' << 030 | 'I' << 040 | \
'N' << 050 | 'E' << 060 | 'L' << 070))

// See http://goo.gl/2EVxN4 for a partial overview of compiler detection and
// version macros.
Expand Down

0 comments on commit ce7bc2a

Please sign in to comment.