Antony Polukhin
|
8f5bcd0f5e
|
Update copyright years
|
2019-01-30 23:26:35 +03:00 |
|
Antony Polukhin
|
5cd9771337
|
Drop dependency on MPL
|
2018-10-21 00:30:14 +03:00 |
|
Patrick J. LoPresti
|
e6adec1411
|
Silence "may be used uninitialized" warnings from GCC 4.9.2 and others.
Avoid boost::value_initialized<> since it does not work on move-only types.
|
2016-04-01 10:16:42 -07:00 |
|
Antony Polukhin
|
424320d9a1
|
Revert " Eliminate GCC 4.9.2 warning "Variable 'result' may be used uninitialized""
This reverts commit bdc355759e .
|
2015-09-25 20:35:11 +03:00 |
|
Antony Polukhin
|
bdc355759e
|
Eliminate GCC 4.9.2 warning "Variable 'result' may be used uninitialized"
This is a patch from https://github.com/plopresti
|
2015-04-15 10:09:20 +03:00 |
|
Antony Polukhin
|
cde03e0a1d
|
Refactoring of lexical_cast: splitting into multiple headers #1
|
2014-08-11 19:13:55 +04:00 |
|
Antony Polukhin
|
d1a51b897d
|
Fix conversions to bool with leading zeros (refs #9659)
|
2014-03-05 14:48:21 +04:00 |
|
Antony Polukhin
|
90b4286753
|
Because of the errors in MSVC with fowarding and static_casting arrays it was decided to drop minor optimization and do not perfect forward source types in try_lexical_convert
|
2014-02-06 11:22:40 +04:00 |
|
Antony Polukhin
|
5a757dcece
|
Docs updated and minor fixes for MSVC2013
|
2014-02-04 13:13:33 +04:00 |
|
Antony Polukhin
|
36bc5aea44
|
Attempt to fix access violation during forwarding of arrays on MSVC
|
2014-02-03 16:22:27 +04:00 |
|
Antony Polukhin
|
1707131ac3
|
Added some tests for try_lexical_convert and fixed some issues.
|
2014-01-01 21:47:09 +04:00 |
|
Antony Polukhin
|
91b77e7373
|
Do forward input streamable parameter during lexical input streaming.
|
2013-12-16 19:05:43 +04:00 |
|
Antony Polukhin
|
e3dec04dd5
|
Applied improvements from [boost] [conversion] try_lexical_cast discussion: function is called try_lexical_convert and now uses perfect forwardings when possible.
|
2013-12-16 18:47:41 +04:00 |
|
Antony Polukhin
|
b40bc02f94
|
try_lexical_cast is now implemented in optimal way
|
2013-12-13 13:52:18 +04:00 |
|
Antony Polukhin
|
07082420b3
|
Sketch implementaion of try_lexical_cast
|
2013-12-12 18:41:51 +04:00 |
|
Antony Polukhin
|
e913b7cb1c
|
Fix some of the implicit conversion warnings (refs #8991)
[SVN r86750]
|
2013-11-18 11:06:06 +00:00 |
|
Antony Polukhin
|
524232ebab
|
Supressing MSVC2013 warnings and ensuring that lexical cast io classes are not copied (refs #9271)
[SVN r86374]
|
2013-10-20 17:57:15 +00:00 |
|
Stephen Kelly
|
472ebeff30
|
Simplify multi-component ifdefs containing BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
[SVN r86248]
|
2013-10-11 23:20:59 +00:00 |
|
Stephen Kelly
|
13f14db751
|
lexical_cast: Remove obsolete GCC version check.
[SVN r86113]
|
2013-10-01 08:47:00 +00:00 |
|
Stephen Kelly
|
c8bd860de6
|
Remove obsolete MSVC check from pragma guard
git grep -h -B1 "^#\s*pragma once" | grep -v pragma | sort | uniq
is now clean.
[SVN r85952]
|
2013-09-26 13:02:51 +00:00 |
|
Antony Polukhin
|
701963d3c4
|
lexical_cast.hpp improvements: fix bug with floats conversions and improve docs (refs #9046)
[SVN r85852]
|
2013-09-23 11:59:06 +00:00 |
|
Antony Polukhin
|
ce7a54af7f
|
Minor update of lexical cast before fixing mingw issues (refs #9046)
[SVN r85830]
|
2013-09-22 16:06:45 +00:00 |
|
Antony Polukhin
|
c359ed53b2
|
Fix unused parameter warning (fix #9106)
[SVN r85683]
|
2013-09-15 19:28:36 +00:00 |
|
Antony Polukhin
|
47041de63a
|
lexical_cast.hpp improvements: interpreter was split to input and output streams to reduce size of binaries and improve compilation times, fixed typo from previous commit (refs #9046)
[SVN r85528]
|
2013-08-30 14:37:32 +00:00 |
|
Antony Polukhin
|
c58a55a512
|
lexical_cast.hpp improvements: more comments, BOOST_NOEXCEPT and const ; parser_buf moved to boost/detail/basic_pointerbuf.hpp, better formatting and simplified type traits (refs #9046)
[SVN r85523]
|
2013-08-30 08:59:59 +00:00 |
|
Antony Polukhin
|
dd165b4b0f
|
lexical_cast.hpp improvements: no more const_casts , much shorter and better template specializations, some code formatting fixes (refs #9046)
[SVN r85513]
|
2013-08-29 15:35:02 +00:00 |
|
Antony Polukhin
|
b5552e351c
|
lexical_cast.hpp improvements: better overflow detections for float conversions, more const modifiers (refs #9046)
[SVN r85512]
|
2013-08-29 11:41:28 +00:00 |
|
Antony Polukhin
|
297b115e6c
|
lcast_put_unsigned in lexical_cast.hpp header is refactored, duplicate code removed (refs #9046)
[SVN r85499]
|
2013-08-28 12:55:09 +00:00 |
|
Antony Polukhin
|
a2299ec1f9
|
Fix bug introduced by previous commits during conversion of wide character to wide character. Remove duplicate code and add more comments for lcast_ret_unsigned method. Optimize and simplify overflow detection (refs #9046)
[SVN r85486]
|
2013-08-27 14:23:19 +00:00 |
|
Antony Polukhin
|
bf551ad8c9
|
Delay character trait extraction (refs #9046)
[SVN r85483]
|
2013-08-27 07:51:27 +00:00 |
|
Antony Polukhin
|
fac805ddf6
|
Improved some of the metaprogramming methods (refs #9046)
[SVN r85482]
|
2013-08-27 07:07:15 +00:00 |
|
Antony Polukhin
|
3ce36a2848
|
Get rid of some macro, improve type traits, fix svn properties, do not supress warnings (refs #9046)
[SVN r85475]
|
2013-08-26 11:18:42 +00:00 |
|
Antony Polukhin
|
6bd8edfa02
|
Do not treat critcal errors as bad_lexical_cast exceptions, but if exceptions are on throw correct exception instead (refs #8966)
[SVN r85232]
|
2013-08-07 11:08:01 +00:00 |
|
Antony Polukhin
|
5f44bdcae8
|
Fix warnings in lexical_cast found by Boost Inspection program (copyrights restored according to svn history, license text replaced with license name and link to it)
[SVN r85149]
|
2013-07-24 08:46:08 +00:00 |
|
Antony Polukhin
|
a65fcf571f
|
Get rid of BOOST_LCAST_HAS_INT128 macro and use BOOST_HAS_INT128 instead (refs #8790)
[SVN r85073]
|
2013-07-18 09:13:41 +00:00 |
|
Antony Polukhin
|
13d98f02d0
|
Fixed testing of 128bit integer types and added staic assert that cheks for std::numeric_limits specializations, if they are required for conversion (refs #8790)
[SVN r85072]
|
2013-07-18 08:45:09 +00:00 |
|
Antony Polukhin
|
f7bd5e24c2
|
Fix macro for int128 detection (refs #8790)
[SVN r84965]
|
2013-07-07 09:51:58 +00:00 |
|
Antony Polukhin
|
c3c44c208a
|
Fix for GCC-4.8 warning (refs #8547)
[SVN r84136]
|
2013-05-04 12:48:26 +00:00 |
|
Antony Polukhin
|
ab0727fdac
|
Fix streams and buffers usage (refs #8267 and refs #7704). Now conversions the use STL streams shall work faster
[SVN r83642]
|
2013-03-30 07:20:22 +00:00 |
|
Antony Polukhin
|
633b852b81
|
Update code that uses string buffers (refs #8267).
Treat cast to pointer as compile time error (refs #8334).
Update documentation
[SVN r83601]
|
2013-03-27 17:00:46 +00:00 |
|
Antony Polukhin
|
9fc1a66d27
|
Reimplement STL string buffer unlocker (refs #8267 and refs #7704)
[SVN r83543]
|
2013-03-24 15:26:45 +00:00 |
|
Antony Polukhin
|
61938bc8d3
|
Fix ambiguity while using lexical_cast with std::transform or other functions that may take a pointer to lexical_cast (refs #7421)
[SVN r83457]
|
2013-03-16 09:24:08 +00:00 |
|
Antony Polukhin
|
694f7b5033
|
Do not use long double type in lexical_cast for internal variables if Boost.Math has no functions for long double (refs #8162)
Do not test lexical_cast on long doubles, if Boost.Math does not support long double
[SVN r83129]
|
2013-02-24 13:34:57 +00:00 |
|
Antony Polukhin
|
a15dbed640
|
Silence some buggy VS warnings (refs #7949)
[SVN r82807]
|
2013-02-10 13:59:45 +00:00 |
|
Antony Polukhin
|
5c8c897d30
|
Fixed as many -Wconversion warnings in lexical cast and tests as possible (refs #2558)
[SVN r82695]
|
2013-02-03 09:20:28 +00:00 |
|
Antony Polukhin
|
47bef9517f
|
Attempt to add support for lexical conversions of int128 types (refs #7909)
[SVN r82560]
|
2013-01-20 12:13:31 +00:00 |
|
Antony Polukhin
|
63b680c082
|
More strict tests, less workarounds, bugfixes (refs #7814)
[SVN r82227]
|
2012-12-27 20:17:09 +00:00 |
|
Antony Polukhin
|
4ad6f1bd4b
|
FIx bug in conversion of some std::array implementations (refs #7799)
[SVN r82172]
|
2012-12-22 18:42:04 +00:00 |
|
Antony Polukhin
|
5a6309db7a
|
Fix incorrect macro usage (refs #7799)
[SVN r82017]
|
2012-12-16 09:01:18 +00:00 |
|
Marshall Clow
|
82969ebb20
|
Remove usage of deprecated macros
[SVN r81551]
|
2012-11-26 14:14:10 +00:00 |
|