Indentation String

Former-commit-id: 86848a87089804d5152f80e960308f8b2eb12ff3
This commit is contained in:
Gawaboumga
2015-08-21 11:11:04 +02:00
parent b51e151930
commit 8cda289b82
2 changed files with 7 additions and 7 deletions

View File

@@ -6,9 +6,9 @@
namespace std
{
template<>
struct hash<NzString>
{
template<>
struct hash<NzString>
{
size_t operator()(const NzString& str) const
{
// Algorithme DJB2
@@ -26,7 +26,7 @@ namespace std
return h;
}
};
};
}
#include <Nazara/Core/DebugOff.hpp>