Fixed gcc still erroring on warning, added newline after macro file.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-07-18 14:08:08 +02:00
parent f1164f11a8
commit 723eb953a1
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#define BORROWED_PTR_GETTER_FUNC(o, returns, funcName) \
static returns* funcName##Wrapper(o* obj) { return obj->funcName().GetRaw(); }
#define UNIQUE_PTR_GETTER_FUNC(o, returns, funcName) \
static returns* funcName##Wrapper(o* obj) { return obj->funcName().get(); }
static returns* funcName##Wrapper(o* obj) { return obj->funcName().get(); }