mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-20 22:03:13 +01:00
Cleanup.
This commit is contained in:
@@ -10,12 +10,13 @@
|
||||
|
||||
namespace bx
|
||||
{
|
||||
/// Units
|
||||
struct Units
|
||||
{
|
||||
enum Enum
|
||||
enum Enum //!< Units:
|
||||
{
|
||||
Kilo,
|
||||
Kibi,
|
||||
Kilo, //!< SI units
|
||||
Kibi, //!< IEC prefix
|
||||
};
|
||||
};
|
||||
|
||||
@@ -257,11 +258,11 @@ namespace bx
|
||||
/// enough space had been available.
|
||||
int32_t snprintf(char* _out, int32_t _max, const char* _format, ...);
|
||||
|
||||
/// Templatized snprintf
|
||||
/// Templatized snprintf.
|
||||
template <typename Ty>
|
||||
void stringPrintfVargs(Ty& _out, const char* _format, va_list _argList);
|
||||
|
||||
///
|
||||
/// Templatized snprintf.
|
||||
template <typename Ty>
|
||||
void stringPrintf(Ty& _out, const char* _format, ...);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user