Skip to content

Commit d4bf380

Browse files
committed
Excluded enumerator from clang auto format
1 parent 3c2b38a commit d4bf380

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

include/igabase.hpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020

2121
namespace iganet {
2222

23+
// clang-format off
2324
/// @brief Enumerator for the collocation point specifier
2425
enum class collPts : short_t {
25-
greville = 0, /*!< Greville points */
26-
greville_interior = 1, /*!< Greville points in the interior */
27-
greville_ref1 = 2, /*!< Greville points, once refined */
28-
greville_interior_ref1 =
29-
3, /*!< Greville points in the interior, once refined */
30-
greville_ref2 = 4, /*!< Greville points, twice refined */
31-
greville_interior_ref2 =
32-
5, /*!< Greville points in the interior, twice refined */
26+
greville = 0, /*!< Greville points */
27+
greville_interior = 1, /*!< Greville points in the interior */
28+
greville_ref1 = 2, /*!< Greville points, once refined */
29+
greville_interior_ref1 = 3, /*!< Greville points in the interior, once refined */
30+
greville_ref2 = 4, /*!< Greville points, twice refined */
31+
greville_interior_ref2 = 5, /*!< Greville points in the interior, twice refined */
3332
};
34-
33+
// clang-format on
34+
3535
namespace detail {
3636
template <typename T>
3737
concept HasAsTensor = requires(T a) {

0 commit comments

Comments
 (0)