diff options
author | Mike Buland <mbuland@penny-arcade.com> | 2019-01-29 13:58:51 -0800 |
---|---|---|
committer | Mike Buland <mbuland@penny-arcade.com> | 2019-01-29 13:58:51 -0800 |
commit | 252225fa9b2dd3dbc0a3c87bc65ce1f821706e7e (patch) | |
tree | 7ece20df6893b03dea372e0ebd9f2720838ee400 /src/unit/variant.unit | |
parent | 4a541f7ba5306f9ebcc7f0fe2eeb663d3f527070 (diff) | |
download | libbu++-252225fa9b2dd3dbc0a3c87bc65ce1f821706e7e.tar.gz libbu++-252225fa9b2dd3dbc0a3c87bc65ce1f821706e7e.tar.bz2 libbu++-252225fa9b2dd3dbc0a3c87bc65ce1f821706e7e.tar.xz libbu++-252225fa9b2dd3dbc0a3c87bc65ce1f821706e7e.zip |
Clerified some ints.
Diffstat (limited to '')
-rw-r--r-- | src/unit/variant.unit | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/unit/variant.unit b/src/unit/variant.unit index 97ff1f0..1105c94 100644 --- a/src/unit/variant.unit +++ b/src/unit/variant.unit | |||
@@ -57,5 +57,9 @@ suite Variant | |||
57 | arg( i2, Fmt(2).fill('0') ); | 57 | arg( i2, Fmt(2).fill('0') ); |
58 | // sio << sio.nl << out << sio.nl; | 58 | // sio << sio.nl << out << sio.nl; |
59 | unitTest( out == "hello-stuff-32-00.odp" ); | 59 | unitTest( out == "hello-stuff-32-00.odp" ); |
60 | |||
61 | int64_t iBig = 159173777LL; | ||
62 | out = Bu::String("%1").arg( iBig ); | ||
63 | unitTest( out == "159173777" ); | ||
60 | } | 64 | } |
61 | } | 65 | } |