mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-05 10:16:01 -04:00

getErrorCode() and getExtendedErrorCode()'s implementations were accidentally declared as inline in the .cpp file. This causes the compiler to not generate any code for them, resulting in link errors when a client calls them. Fixed by moving the implementations into the header, where they need to be if they're inline.