Skip to content

Commit

Permalink
msvc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dakka committed May 19, 2024
1 parent 7b1d777 commit 38bdb54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ int main(void)
std::cout << conjure_type<decltype(strv)>::name << '\n';
std::cout << conjure_type<std::underlying_type_t<numbers>>::name << '\n';

for(const auto& [a1, b1] : conjure_enum<component>::unscoped_entries)
std::cout << static_cast<int>(a1) << ' ' << b1 << '\n';
for(const auto& [a3, b3] : conjure_enum<component>::unscoped_entries)
std::cout << static_cast<int>(a3) << ' ' << b3 << '\n';

std::cout << conjure_type<conjure_type<conjure_enum<numbers>>>::name << '\n';

Expand Down

0 comments on commit 38bdb54

Please sign in to comment.