Skip to content

Commit

Permalink
libcore|String: Removed redundant method
Browse files Browse the repository at this point in the history
dsize is now simply uint64_t.
  • Loading branch information
skyjake committed Mar 1, 2020
1 parent 13acd44 commit 661ccaf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions doomsday/libs/core/include/de/data/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -797,9 +797,6 @@ class DE_PUBLIC String : public IByteArray
static String asText(duint16 value) { return format("%u", value); }
static String asText(duint32 value) { return format("%u", value); }
static String asText(duint64 value) { return format("%llu", value); }
#if __SIZEOF_SIZE_T__ != 8 // already got uint64_t
static String asText(dsize value) { return format("%zu", value); }
#endif
static String asText(dfloat value) { return format("%f", double(value)); }
static String asText(dfloat value, int precision);
static String asText(ddouble value) { return format("%f", value); }
Expand Down

0 comments on commit 661ccaf

Please sign in to comment.