vitaut
|
8b0504825d
|
Merge branch 'master' of github.com:cppformat/cppformat
|
2015-12-24 06:58:05 -08:00 |
|
vitaut
|
77d3761b50
|
Enable macro expansion in Doxygen (fixes #248)
|
2015-12-24 06:54:37 -08:00 |
|
Victor Zverovich
|
0525a03a69
|
Merge pull request #251 from nickhutchinson/work/fprintf-streams
Add fprintf overload that writes to a std::ostream
|
2015-12-23 06:58:44 -08:00 |
|
Nicholas Hutchinson
|
1a5a1708b7
|
Add fprintf overload that writes to a std::ostream
For completeness, add an overload for printf that takes a std::ostream.
|
2015-12-23 15:59:13 +13:00 |
|
vitaut
|
4797ca025e
|
POD -> trivially copyable/constructible
|
2015-12-20 07:29:59 -08:00 |
|
Victor Zverovich
|
3121ebd044
|
Merge pull request #249 from dean0x7d/variadic-v3
Reduce compile time of variadic functions (2)
|
2015-12-20 07:10:00 -08:00 |
|
Dean Moldovan
|
b098306839
|
Replace template recursion with array initialization
|
2015-12-19 18:19:18 +01:00 |
|
Dean Moldovan
|
a721319e3a
|
Add MakeArg constructor for Arg
|
2015-12-19 18:19:18 +01:00 |
|
vitaut
|
29726cefb8
|
Remove extra '*'s
|
2015-12-18 07:30:03 -08:00 |
|
vitaut
|
811964502d
|
Add BasicFormatter's members to the docs
|
2015-12-18 07:24:25 -08:00 |
|
vitaut
|
0629d76bb0
|
Fallback to sized integer types on MSVC if stdint.h is not available
|
2015-12-18 07:20:05 -08:00 |
|
vitaut
|
016714c57b
|
Add BasicFormatter to the docs
|
2015-12-18 07:16:40 -08:00 |
|
vitaut
|
c679352517
|
Define FMT_API to nothing for Doxygen
|
2015-12-18 07:13:43 -08:00 |
|
vitaut
|
1042ddda0f
|
Document BasicFormatter
|
2015-12-18 07:07:41 -08:00 |
|
vitaut
|
d998b5d038
|
Add version 2.0.0 to the dropdown menu
|
2015-12-18 06:47:37 -08:00 |
|
vitaut
|
bf6651d1ca
|
Add github-btn style
|
2015-12-17 07:59:09 -08:00 |
|
vitaut
|
1cba0aea27
|
Simplify CMake config and do minor adjustments
for consistency with used coding conventions.
|
2015-12-10 07:24:23 -08:00 |
|
Victor Zverovich
|
a9d2e826fe
|
Merge pull request #245 from macdems/master
Declarations for shared library in Windows.
|
2015-12-10 07:05:33 -08:00 |
|
Maciej Dems
|
c47318afa8
|
Declarations for shared library in Windows.
Added __declspec(dllimport) and __declspec(dllexport) declarations
when compiled in Windows.
|
2015-12-10 13:36:18 +01:00 |
|
vitaut
|
ecd52bc610
|
Fix for a bogus MSVC warning (#244)
|
2015-12-09 08:57:29 -08:00 |
|
vitaut
|
5c76d107cb
|
Fix MSVC build
|
2015-12-06 14:17:34 -08:00 |
|
vitaut
|
98c1f76f24
|
Replace uninitialized_copy with memmove (#242)
because the memory areas may overlap.
|
2015-12-06 07:44:07 -08:00 |
|
vitaut
|
e7f4566dd4
|
Replace <algorithm> with <memory>
~20% faster compile time on bloat-test
|
2015-12-04 22:57:36 -08:00 |
|
vitaut
|
e0179ee190
|
Fix a warning and remove extra newline
|
2015-12-04 17:52:36 -08:00 |
|
vitaut
|
e567fe6960
|
Replace "!!" with "!= 0" for readability
|
2015-12-04 17:52:06 -08:00 |
|
vitaut
|
7c60db1e24
|
Fix a warning
|
2015-12-04 14:12:42 -08:00 |
|
vitaut
|
0ea73df717
|
Merge branch 'custom-formatter'
|
2015-12-04 07:24:09 -08:00 |
|
vitaut
|
aa7bb101ed
|
Undefine fileno if defined in posix-test
|
2015-12-03 20:17:04 -08:00 |
|
Victor Zverovich
|
3bc97a5564
|
Merge pull request #241 from Gachapen/fix_fileno
Fix fileno causing compile error when #defined
|
2015-12-03 20:15:10 -08:00 |
|
Magnus Bjerke Vik
|
c2ffa14684
|
Fix fileno causing compile error when #defined
Error:
expected unqualified-id before '(' token
int fmt::BufferedFile::fileno() const {
This is an issue with Android NDK and mingw32.
|
2015-12-03 23:21:42 +01:00 |
|
vitaut
|
535dbdd1c8
|
Move formatter methods to the header
and improve naming consistency
|
2015-12-03 09:38:06 -08:00 |
|
vitaut
|
00d56e06ef
|
Bump version
|
2015-12-03 08:15:03 -08:00 |
|
vitaut
|
7e94fcb680
|
Reapply accidentally reverted changes by ReadmeCritic
|
2015-12-03 08:09:53 -08:00 |
|
vitaut
|
6ced4230f4
|
Initial support for custom formatters
|
2015-12-02 08:41:05 -08:00 |
|
vitaut
|
5f8af5ef1d
|
Update version
|
2015-12-01 07:33:30 -08:00 |
|
vitaut
|
5837851cb2
|
Update docs
|
2015-12-01 07:31:15 -08:00 |
|
vitaut
|
abe932164a
|
Update changelog
|
2015-12-01 07:20:33 -08:00 |
|
Victor Zverovich
|
19de4a863a
|
Merge pull request #236 from Jopie64/master
Silence some performance warnings in Visual Studio
|
2015-12-01 06:58:09 -08:00 |
|
Johan 't Hart
|
328c8888ec
|
Make compilable under Visual Studio 2008
Older Visual Studio versions are not shipped with stdint.h
|
2015-12-01 09:34:13 +01:00 |
|
Johan 't Hart
|
df2dfd9612
|
Silence some performance warnings in Visual Studio
|
2015-12-01 08:59:59 +01:00 |
|
vitaut
|
fac207816c
|
Update release script
|
2015-11-30 08:23:16 -08:00 |
|
vitaut
|
ec80a1ab51
|
Update changelog
|
2015-11-30 08:22:03 -08:00 |
|
vitaut
|
3bf900e301
|
Update changelog
|
2015-11-30 08:17:47 -08:00 |
|
vitaut
|
722c8e4ae6
|
Update changelog
|
2015-11-30 08:10:49 -08:00 |
|
vitaut
|
13d6b2d38c
|
Update changelog
|
2015-11-30 07:22:51 -08:00 |
|
vitaut
|
b8bd80ff28
|
Fix handling of empty non-null-terminated strings
|
2015-11-25 09:49:01 -08:00 |
|
vitaut
|
7cbb29f61e
|
Make FormatBuf::size() const
|
2015-11-25 08:27:46 -08:00 |
|
vitaut
|
053df632f8
|
Minor simplification and adjustment of coding style for consistency
in custom stream buffer implementation:
* basic_formatbuf -> internal::FormatBuf
* remove unused Traits template argument
|
2015-11-25 08:00:57 -08:00 |
|
vitaut
|
222f2d28f5
|
Fix MSVC warnings
|
2015-11-25 07:47:43 -08:00 |
|
vitaut
|
f60c4b9947
|
Fix an MSVC warning (#234)
|
2015-11-25 07:17:05 -08:00 |
|