Commit Graph

411 Commits

Author SHA1 Message Date
Victor Zverovich
bf14b2c41b Try improving error reporting
when formatting wide strings into narrow.
2015-02-25 07:43:47 -08:00
Victor Zverovich
28fd7fb159 Fix formatting (-Gangnam- Google style) 2015-02-24 08:31:56 -08:00
Victor Zverovich
d06ff7a7e8 Fix internal::clzll on Win64 2015-02-22 06:31:55 -08:00
Carter Li
524222f094 Win32 doesn't have _BitScanForward64 so emulate it with two 32 bit calls.
Implementation used: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/support/win32/support.h?view=markup#l135
2015-02-22 17:48:19 +08:00
Victor Zverovich
cbc46d9e78 Use __builtin_clz whenever it is available 2015-02-21 06:21:29 -08:00
Victor Zverovich
e87a24633b Don't use builtin_ in function names as they are not builtins 2015-02-21 06:16:49 -08:00
Victor Zverovich
14eae59c6a Correct FMT_BUILTIN_CLZ definition 2015-02-20 08:58:16 -08:00
Victor Zverovich
2418a84f02 Cleanup 2015-02-20 08:51:01 -08:00
Victor Zverovich
27e0bf72c0 Use correct intrinsics for count_digits 2015-02-20 08:49:06 -08:00
Carter Li
00e3ae508e Use MSVC intrinsics for better performance 2015-02-20 11:19:01 +08:00
Victor Zverovich
8d07db0e0e Break long line 2015-02-16 14:33:04 -08:00
Victor Zverovich
bd133382f0 Fix BasicWriter::write without formatting arguments on C++11 (#109) 2015-02-16 14:32:38 -08:00
root
9fd566412d Refine 2015-02-15 15:25:56 +08:00
carterl
9331533309 Use __GXX_EXPERIMENTAL_CXX0X__ for better C++11 detection 2015-02-15 04:16:23 +01:00
Carter Li
2eef573656 Use explicitly deleted functions to make types non-copyable 2015-02-14 23:22:14 +08:00
Carter Li
e2583ab5f3 Use throw() when noexcept is not supported 2015-02-14 09:58:29 +08:00
Victor Zverovich
dd2e8b98de Fix RST markup 2015-02-12 12:46:28 -08:00
Victor Zverovich
618dd9d6af Remove the fallthrough attribute detection 2015-02-09 07:54:03 -08:00
Victor Zverovich
a92c179a6d Fix warnings on clang 2015-02-09 07:37:26 -08:00
viz
26c151c5e4 Detect [[clang::fallthrough]] even __has_cpp_attribute is not supported 2015-02-08 07:57:05 -08:00
Victor Zverovich
326ade7698 Document what happens if you pass an invalid error code
to SystemError or WindowsError
2015-02-07 09:46:42 -08:00
Victor Zverovich
fe2b5351be Merge pull request #101 from cppformat/fallthrough
Try detecting clang::fallthrough using __has_cpp_attribute
2015-02-07 06:57:20 -08:00
Victor Zverovich
d7fea1ba0c Try detecting clang::fallthrough using __has_cpp_attribute
and use it to silence one of the warnings in #96.
2015-02-07 06:51:47 -08:00
Victor Zverovich
45d70b71ec Fix by @dixlorenz for clang warning about unknown Doxygen tags 2015-02-06 21:25:30 -08:00
Victor Zverovich
554abb12f1 Fix formatting 2015-02-06 08:45:43 -08:00
Victor Zverovich
f2c16957f7 Provide examples of using SystemError and WindowsError (#54) 2015-02-06 08:43:02 -08:00
aruhan
e8febf7f4b Fix format using wostream produces wrong results 2015-01-05 22:33:18 +09:00
Victor Zverovich
8d89e56d2c Set primary domain to cpp 2014-12-18 08:36:53 -08:00
Victor Zverovich
2523f3b939 Fix more -Wshadow warnings 2014-12-10 07:24:05 -08:00
Victor Zverovich
f9fc8fd09d Fix -Wshadow warnings 2014-12-09 07:45:54 -08:00
Victor Zverovich
f9c3ff244d Merge branch 'header-only' of github.com:cppformat/cppformat 2014-12-09 06:14:04 -08:00
Victor Zverovich
54f19ff7b2 Simplify append_float_length 2014-12-03 06:33:31 -08:00
Victor Zverovich
f3bd9d4241 Remove extra space 2014-12-03 06:20:12 -08:00
Victor Zverovich
6f3c095ed6 Use FMT_DISALLOW_COPY_AND_ASSIGN instead of undefined assignment operators 2014-12-03 06:16:52 -08:00
Daniel.Perry
838dc1e189 move append_float_length specialization to the header 2014-12-02 10:20:27 -05:00
Victor Zverovich
311251eb91 Complete header-only configuration support 2014-11-29 06:58:00 -08:00
Victor Zverovich
d9c605c61f Initial support for header-only configuration 2014-11-28 06:40:57 -08:00
Daniel.Perry
334fc54b5d removed unused code 2014-11-25 18:03:54 -05:00
Daniel.Perry
bd0067ee76 made code compile under windows with level 4 warnings 2014-11-25 18:01:09 -05:00
Victor Zverovich
5a5870d3ca n -> size 2014-10-30 07:10:43 -07:00
Victor Zverovich
5c4b6678e4 Compute StringRef size in ctor 2014-10-30 07:05:42 -07:00
Victor Zverovich
709465197a Switch to bootstrap theme 2014-10-10 08:40:35 -07:00
Victor Zverovich
1e63fc7ca0 Comment 2014-10-05 09:34:46 -07:00
Victor Zverovich
04d38a8b14 Update docs 2014-10-01 08:32:01 -07:00
Victor Zverovich
8b9a6e03f6 Test buffer 2014-10-01 08:12:10 -07:00
Victor Zverovich
74dc571ba0 Support signed char and unsigned char strings 2014-09-30 08:15:56 -07:00
Victor Zverovich
d1ded569ff Separate memory management and formatting
Array is split into an abstract Buffer class and a concrete MemoryBuffer class. BasicWriter now does all memory allocation through a Buffer object. Subclasses of BasicWriter may use different buffer types. The new BasicMemoryBuffer class uses the default MemoryBuffer.
2014-09-29 08:48:16 -07:00
Victor Zverovich
5ca3d00e26 Mind the lifetime 2014-09-25 12:15:16 -07:00
Victor Zverovich
a9da3d3852 Fix ArgList::operator[] 2014-09-25 09:31:36 -07:00
Victor Zverovich
65cb43a484 Store type info in uint64_t instead of ULongLong 2014-09-25 07:42:29 -07:00