Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Apr 7, 2024
1 parent a4b79e8 commit 68f5a31
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions testing_utilities/check_well_formedness.hpp
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
#pragma once
#include <type_traits>

#include "base/macros.hpp"

#define PRINCIPIA_EXPAND(...) __VA_ARGS__

#define PRINCIPIA_CONCATENATE(s1, s2) s1##s2
#define PRINCIPIA_CONCATENATE_EXPANSION(s1, s2) PRINCIPIA_CONCATENATE(s1, s2)

#define PRINCIPIA_COMMA_IF_NONEMPTY(...) __VA_OPT__(,)
#define PRINCIPIA_COMMA_IF_NONEMPTY(...) __VA_OPT__(,) // NOLINT

#define PRINCIPIA_CHECK_WELL_FORMEDNESS(unique_concept_name, \
expected_well_formedness, \
Expand Down

0 comments on commit 68f5a31

Please sign in to comment.