Skip to content

Commit

Permalink
msvc type fix 4
Browse files Browse the repository at this point in the history
  • Loading branch information
dakka committed Jun 10, 2024
1 parent 6bd3928 commit 3a840d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/fix8/conjure_enum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -743,10 +743,10 @@ class conjure_type
if constexpr (constexpr auto ep##x { e1.find(cs::get_spec<sval::anon_str,stype::x>()) }; ep##x != std::string_view::npos) \
return e1.substr(ep##x + cs::get_spec<sval::anon_str,stype::x>().size(), e1.size() - ep##x - cs::get_spec<sval::anon_str,stype::x>().size())
chkstr0(type_t);
else chkstr0(extype_t0);
else chkstr0(extype_t1);
else chkstr0(extype_t2);
else chkstr0(extype_t3);
chkstr0(extype_t0);
chkstr0(extype_t1);
chkstr0(extype_t2);
chkstr0(extype_t3);
}
return {};
}
Expand Down

0 comments on commit 3a840d3

Please sign in to comment.