diff --git a/CondCore/CondDB/src/DbCore.h b/CondCore/CondDB/src/DbCore.h index 1212924550f..50fe25a8724 100644 --- a/CondCore/CondDB/src/DbCore.h +++ b/CondCore/CondDB/src/DbCore.h @@ -55,12 +55,12 @@ // implementation for the column definition: // case with 3 params -#define FIXSIZE_COLUMN(NAME, TYPE, SIZE) \ - struct NAME { \ - static constexpr char const* name = #NAME; \ - typedef TYPE type; \ - static constexpr size_t size = SIZE; \ - static std::string tableName() { return std::string(tname); } \ +#define FIXSIZE_COLUMN(NAME, TYPE, SIZE) \ + struct NAME { \ + static constexpr char const* name = #NAME; \ + typedef TYPE type; \ + static constexpr size_t size = SIZE; \ + static std::string tableName() { return std::string(tname); } \ static std::string fullyQualifiedName() { return std::string(tname) + "." + std::string(name); } \ };