[go: up one dir, main page]

Skip to content

Commit

Permalink
Merge pull request JustasMasiulis#18 from aleks-s/master
Browse files Browse the repository at this point in the history
Fix IntelliSense error
  • Loading branch information
JustasMasiulis authored Dec 10, 2018
2 parents c3bf58b + d74292e commit ce8cb9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/xorstr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,14 +230,14 @@ namespace jm {
};

template<class Tstr, std::size_t... StringIndices, std::size_t... KeyIndices>
XORSTR_FORCEINLINE constexpr xor_string<
detail::tstring_<Tstr().value[StringIndices]...>,
detail::key8<KeyIndices>()...>
XORSTR_FORCEINLINE constexpr auto
make_xorstr(Tstr,
std::index_sequence<StringIndices...>,
std::index_sequence<KeyIndices...>) noexcept
{
return {};
return xor_string<
detail::tstring_<Tstr().value[StringIndices]...>,
detail::key8<KeyIndices>()...>{};
}

} // namespace jm
Expand Down

0 comments on commit ce8cb9e

Please sign in to comment.