Hazelnupp/Hazelnupp/Placeholders.h
2021-06-05 12:29:59 +02:00

12 lines
258 B
C++

#pragma once
#include <string>
namespace Hazelnp
{
namespace Placeholders
{
//! The only purpose of this is to provide the ability to return an empty string as an error for std::string& methods.
static const std::string g_emptyString;
}
}