Skip to content

Commit

Permalink
How did this one get missed though
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames authored Dec 20, 2023
1 parent 0b6c0b9 commit 7e074b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NorthstarDLL/util/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void RemoveAsciiControlSequences(char* str, bool allow_color_codes)
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
std::string NS::Utils::FormatV(const char* fmt, va_list vArgs)
std::string FormatV(const char* fmt, va_list vArgs)
{
va_list vArgsCopy;
va_copy(vArgsCopy, vArgs);
Expand All @@ -105,7 +105,7 @@ std::string NS::Utils::FormatV(const char* fmt, va_list vArgs)
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
std::string NS::Utils::Format(const char* fmt, ...)
std::string Format(const char* fmt, ...)
{
std::string svResult;

Expand All @@ -120,7 +120,7 @@ std::string NS::Utils::Format(const char* fmt, ...)
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
std::string NS::Utils::CreateTimeStamp()
std::string CreateTimeStamp()
{
std::chrono::system_clock::time_point now = std::chrono::system_clock::now();

Expand Down

0 comments on commit 7e074b8

Please sign in to comment.