Skip to content

Commit

Permalink
Correct issues with defines set by compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Nov 2, 2023
1 parent a389f2b commit 07e58cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rapids-cmake/test/detail/generate_resource_spec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
#include <vector>

struct version {
version() : major(1), minor(0) {}
int major;
int minor;
version() : json_major(1), json_minor(0) {}
int json_major;
int json_minor;
};

struct gpu {
Expand Down

0 comments on commit 07e58cd

Please sign in to comment.