Robert Hodgson

Results 1 issues of Robert Hodgson

There are a few syntax _errors_ in include/version.hpp ``` #if defined(SOL_COMPILER_CLANG) #if defined(SOL_COMPILER_CLANG != 0) ``` which should be ``` #if defined(SOL_COMPILER_CLANG) #if (SOL_COMPILER_CLANG != 0) ``` Also, while reviewing...