diff --git a/Redcraft.Utility/Source/Public/Miscellaneous/VarArgs.h b/Redcraft.Utility/Source/Public/Miscellaneous/VarArgs.h index 9442178..b64abb1 100644 --- a/Redcraft.Utility/Source/Public/Miscellaneous/VarArgs.h +++ b/Redcraft.Utility/Source/Public/Miscellaneous/VarArgs.h @@ -36,7 +36,7 @@ NAMESPACE_PRIVATE_END #define VARARGS_ACCESS_COPY(ContextName, ContextSource) NAMESPACE_STD::va_list ContextName; va_copy(ContextName, ContextSource) /** Accesses the next variadic function argument. */ -#define VARARGS_ACCESS(ContextName, Type) (NAMESPACE_PRIVATE::VarArgsAssert, va_arg(ContextName, Type)) +#define VARARGS_ACCESS(ContextName, Type) (NAMESPACE_REDCRAFT::NAMESPACE_PRIVATE::VarArgsAssert, va_arg(ContextName, Type)) /** Ends traversal of the variadic function arguments. */ #define VARARGS_ACCESS_END(ContextName) va_end(ContextName) diff --git a/Redcraft.Utility/Source/Public/String/Char.h b/Redcraft.Utility/Source/Public/String/Char.h index 73c9efe..9b9fcf6 100644 --- a/Redcraft.Utility/Source/Public/String/Char.h +++ b/Redcraft.Utility/Source/Public/String/Char.h @@ -57,7 +57,7 @@ struct TLiteral NAMESPACE_PRIVATE_END /** Templated literal struct to allow selection of string literals based on the character type provided, and not on compiler switches. */ -#define LITERAL(CharType, StringLiteral) NAMESPACE_PRIVATE::TLiteral::Select(TEXT(StringLiteral), WTEXT(StringLiteral), U8TEXT(StringLiteral), U16TEXT(StringLiteral), U32TEXT(StringLiteral)) +#define LITERAL(CharType, StringLiteral) NAMESPACE_REDCRAFT::NAMESPACE_PRIVATE::TLiteral::Select(TEXT(StringLiteral), WTEXT(StringLiteral), U8TEXT(StringLiteral), U16TEXT(StringLiteral), U32TEXT(StringLiteral)) static_assert(CUnsigned, "TChar assumes u8char is an unsigned integer"); static_assert(CUnsigned, "TChar assumes u16char is an unsigned integer"); diff --git a/Redcraft.Utility/Source/Public/String/Conversion.h.inl b/Redcraft.Utility/Source/Public/String/Conversion.h.inl index 9330852..dce9510 100644 --- a/Redcraft.Utility/Source/Public/String/Conversion.h.inl +++ b/Redcraft.Utility/Source/Public/String/Conversion.h.inl @@ -17,7 +17,7 @@ NAMESPACE_REDCRAFT_BEGIN NAMESPACE_MODULE_BEGIN(Redcraft) NAMESPACE_MODULE_BEGIN(Utility) -// @TODO: Refactor the conversion tool by more elegant way. +// TODO: Refactor the conversion tool by more elegant way. // The conversion tool uses a string to describe the object format. //