Skip to content

Commit

Permalink
Fix linking issue on Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
Zylann committed Jul 3, 2024
1 parent 2a80216 commit 8eaf533
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions streams/sqlite/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ namespace zylann::voxel::sqlite {
// One connection to the database, with our prepared statements
class Connection {
public:
static const int VERSION_V0 = 0;
static const int VERSION_V1 = 1;
static const int VERSION_LATEST = VERSION_V1;
static constexpr int VERSION_V0 = 0;
static constexpr int VERSION_V1 = 1;
static constexpr int VERSION_LATEST = VERSION_V1;

struct Meta {
int version = -1;
Expand Down

0 comments on commit 8eaf533

Please sign in to comment.