astyle fix, clashes with .clang-format

This commit is contained in:
Kunal Tyagi 2022-06-26 03:30:44 +09:00
parent f4adc22b38
commit 420f47fd1e

View File

@ -34,9 +34,10 @@ SOFTWARE.
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
using nlohmann::json; using nlohmann::json;
namespace persons { namespace persons
{
#define PERSON_CLASS_BODY(ClassName, Visibility) \ #define PERSON_CLASS_BODY(ClassName, Visibility) \
Visibility: \ Visibility: \
std::string name = ""; \ std::string name = ""; \
int age = 0; \ int age = 0; \
json metadata = nullptr; \ json metadata = nullptr; \
@ -96,7 +97,7 @@ Visibility: \
y == other.y && \ y == other.y && \
z == other.z; \ z == other.z; \
} \ } \
Visibility: \ Visibility: \
int a = 0; \ int a = 0; \
int b = 0; \ int b = 0; \
int c = 0; \ int c = 0; \