Skip to content

Commit

Permalink
chore: Undef TRUE and FALSE (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr authored Nov 21, 2024
1 parent 39a3d67 commit 8b8cc29
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/reltoaltrep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
#include "httplib.hpp"
#include <cinttypes>

#ifdef TRUE
#undef TRUE
#endif

#ifdef FALSE
#undef FALSE
#endif

using namespace duckdb;

R_altrep_class_t RelToAltrep::rownames_class;
Expand Down

0 comments on commit 8b8cc29

Please sign in to comment.