Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
deathkiller committed Feb 15, 2024
1 parent 95c12e5 commit 8b97c22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Sources/Jazz2.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,10 @@
<ClInclude Include="nCine\Base\pdqsort\pdqsort.h">
<Filter>Header Files\nCine\Base\pdqsort</Filter>
</ClInclude>
<ClInclude Include="$(ExtensionLibraryPath)\Containers\StringBuilder.h">
<ClInclude Include="$(ExtensionLibraryPath)\Containers\StringConcatenable.h">
<Filter>Header Files\Shared\Containers</Filter>
</ClInclude>
<ClInclude Include="$(ExtensionLibraryPath)\Containers\StringStl.h">
<Filter>Header Files\Shared\Containers</Filter>
</ClInclude>
</ItemGroup>
Expand Down
5 changes: 5 additions & 0 deletions Sources/Shared/Containers/StringConcatenable.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@ namespace Death { namespace Containers {
}
};

struct StringConcatenable<MutableStringView> : StringConcatenable<StringView>
{
typedef MutableStringView type;
};

template<std::size_t N>
struct StringConcatenable<const char[N]>
{
Expand Down

0 comments on commit 8b97c22

Please sign in to comment.