Daniel James
c3e54942e8
Merge release notes + float hash fix. Ref #8822 .
...
[SVN r86210]
2013-10-08 21:26:30 +00:00
Daniel James
61df9052e1
Merge Hash. Fixes #8568 , Refs #8822.#8822.#8822.
...
[SVN r85389]
2013-08-18 09:48:53 +00:00
Daniel James
4aec4be0ed
Hash: Merge UB fix to release.
...
[SVN r82256]
2012-12-29 11:11:43 +00:00
Daniel James
713b688159
Hash: Merge from trunk.
...
- Avoid floating point workarounds on recent standard libraries.
- Support int128.
- Remove container_fwd_0x.hpp.
[SVN r81920]
2012-12-13 22:34:18 +00:00
Daniel James
d8adc5aa24
Remove deprecated container_fwd header.
...
[SVN r81356]
2012-11-15 13:25:08 +00:00
Daniel James
dfd48ef498
Hash: Revert r81122. Refs #7470 .
...
I'll get back to this later, it probably requires compiler specific changes.
[SVN r81124]
2012-10-31 19:05:25 +00:00
Marshall Clow
a2756e75e8
Narrower 'using'; Refs #7470
...
[SVN r81122]
2012-10-31 17:14:43 +00:00
Daniel James
b856e6308d
Hash: Merge new floating point hasher.
...
Uses a binary hash for more platforms.
[SVN r80293]
2012-08-28 21:50:57 +00:00
Daniel James
b4b4a559e0
Hash: merge enum support + cleanup some tests.
...
[SVN r80292]
2012-08-28 21:48:16 +00:00
Daniel James
853a713cf2
Remove deprecated header boost/functional/detail/container_fwd.hpp
...
[SVN r80288]
2012-08-28 17:43:05 +00:00
Daniel James
043571dabf
Merge #error for deperectaed boost/functional/detail/container_fwd.hpp
...
[SVN r80286]
2012-08-28 17:38:30 +00:00
Daniel James
7b2f73c225
Hash: Avoid type punning warning.
...
[SVN r80217]
2012-08-25 20:54:10 +00:00
Daniel James
eec47991f9
Hash: A single unified algorithm for hashing floats.
...
Attempts to automatically use a binary hash for floats where it's known to
work, and then use the generic hash algorithm as a fallback.
[SVN r80177]
2012-08-24 22:52:42 +00:00
Daniel James
05f16beaf0
Hash: Quick attempt at supporting enums.
...
Thanks to Filip Konvička.
[SVN r80139]
2012-08-22 11:40:27 +00:00
Daniel James
34a6eebf7e
Hash: Merge C++11 forward declaration fix.
...
[SVN r80054]
2012-08-15 23:04:49 +00:00
Daniel James
9119b2646b
Hash: Remove C++11 forward declarations.
...
It seems that on Visual C++ Dinkumware declares shared_ptr in std, but for
Intel C++ it imports it from std::tr1. I was thinking of doing a macro check
for this, but since we're close to release, just change it to always include
the headers and never forward declare the C++11 classes, which is much safer.
I might restore the forward declarations in the future, although I'm tempted
not to. I'm not sure the improvement in compile time is worth the hassle.
[SVN r80038]
2012-08-14 20:06:07 +00:00
Daniel James
92fe67f714
Compile error for deprecated header boost/functional/detail/container_fwd.hpp.
...
[SVN r79652]
2012-07-22 07:15:34 +00:00
Daniel James
73b507c728
Hash: Merge support for smart pointers.
...
[SVN r79548]
2012-07-16 00:18:30 +00:00
Daniel James
330040aea9
Hash: Merge update c++11 header macros.
...
[SVN r79544]
2012-07-15 23:28:30 +00:00
Daniel James
5ebe3ad87d
Hash: Fix smart pointer macro check.
...
[SVN r79527]
2012-07-15 07:43:40 +00:00
Daniel James
411ac66581
Hash: std::shared_ptr, std::unique_ptr support.
...
[SVN r79516]
2012-07-14 22:32:29 +00:00
Daniel James
75bcfdeb36
Hash: Merge using SFINAE to avoid implicit casts.
...
[SVN r79394]
2012-07-09 20:53:36 +00:00
Marshall Clow
af3a31090c
Switch from deprecated macros to new shiny ones; no functionality change
...
[SVN r79392]
2012-07-09 20:12:04 +00:00
Daniel James
c409903f5e
Hash: Merge deprecated header warning + some documentation.
...
[SVN r78697]
2012-05-27 21:13:49 +00:00
Daniel James
6be66ba092
Hash: Remove stary semicolon from deprecation pragma.
...
[SVN r78635]
2012-05-26 15:02:26 +00:00
Daniel James
0d4c55854b
Add warning to deprecated header boost/functional/detail/container_fwd.hpp.
...
Should have done this years ago, removing this header should make
modularization a tad bit cleaner.
[SVN r78533]
2012-05-21 21:58:18 +00:00
Daniel James
8bc410f571
Hash: Use SFINAE to avoid implicit casts to numbers.
...
[SVN r78391]
2012-05-08 22:24:46 +00:00
Daniel James
346e62f53f
Unordered/Hash: Merge from trunk.
...
[SVN r78319]
2012-05-03 22:05:21 +00:00
Daniel James
441cea413d
Hash: Some formatting.
...
[SVN r78164]
2012-04-23 20:49:30 +00:00
Daniel James
98953a28c7
Hash: Support std::array and std::tuple. Refs #6806 .
...
[SVN r78144]
2012-04-22 19:46:28 +00:00
Daniel James
f98a942e2e
Unordered/hash: Avoid a gcc warning. Refs #6771
...
[SVN r77832]
2012-04-08 15:29:15 +00:00
Daniel James
cc0710b8a2
Merge typeindex support for hash. Fixes #4756 .
...
[SVN r68199]
2011-01-17 04:15:00 +00:00
Daniel James
ce885af9b0
Fix copy and paste typo. Refs #4756 .
...
[SVN r68182]
2011-01-16 11:06:00 +00:00
Daniel James
9e641187c6
Oops, make new hash_value overload inline.
...
[SVN r68147]
2011-01-14 03:36:39 +00:00
Daniel James
7dc95d044d
Support typeindex in hash. Refs #4756 .
...
[SVN r68145]
2011-01-14 03:13:39 +00:00
Daniel James
fc7eb28826
Merge hash from trunk.
...
- Avoid `-Wconversion` warnings.
[SVN r67664]
2011-01-04 23:06:53 +00:00
Daniel James
ed598f865e
Fix tabs and files without copyright.
...
[SVN r67612]
2011-01-03 12:43:34 +00:00
Daniel James
482f038837
Avoid -Wconversion warnings in unordered & hash.
...
[SVN r67170]
2010-12-11 14:43:00 +00:00
Daniel James
80b88f24c1
Merge OpenVMS 64 bit patch for hash. Fixes #4477 .
...
[SVN r64869]
2010-08-17 20:00:17 +00:00
Daniel James
577054de93
Fix hashing pointers on 64-bit OpenVMS.
...
Patch by Artyom. Refs #4477
[SVN r64397]
2010-07-27 19:18:53 +00:00
Daniel James
a98b37d12f
Merge hash, opt-in to breaking change rather than opt-out.
...
[SVN r64031]
2010-07-15 01:12:23 +00:00
Daniel James
fc3b3863b4
Only include static_assert when necessary.
...
[SVN r64009]
2010-07-14 08:28:04 +00:00
Daniel James
906f632706
Actually, make the change to hash opt-in, rather than opt-out. It's a bit late to introduce a breaking change.
...
[SVN r64007]
2010-07-14 08:17:48 +00:00
Daniel James
afc4d6664f
Merge iostreams, hash.
...
Including disallowing implicit casts to `hash_value`.
[SVN r63812]
2010-07-10 14:20:45 +00:00
Daniel James
bbfb6fd32c
Release notes for hash.
...
[SVN r63810]
2010-07-10 13:47:47 +00:00
Daniel James
2553a5fbdc
Try preventing static casts when calling hash_value.
...
[SVN r63716]
2010-07-06 23:32:37 +00:00
Daniel James
7af7c59420
Merge from trunk.
...
- Add `quick_erase` for unordered. `erase_return_void` is now deprecated.
Fixes #3966
- Avoid collision between 0 and 0.5. Fixes #4038
[SVN r60980]
2010-03-31 21:39:07 +00:00
Daniel James
733422d1b9
Remove optimization which causes 0.5 to hash to 0. Refs #4038 .
...
I have an internal requirement the 0 hashes to 0, a better solution
might be to remove that, put the optimization back and hash 0 to another
value. Or alternatively, use the main combine function instead.
[SVN r60805]
2010-03-24 08:49:00 +00:00
Daniel James
f3072d2023
Merge hash and unordered from trunk.
...
- Replace uses of deprecated C++0x macros
- Set length of primes inside template on Sun C++. Fixes #3854
- Missing newline at end of file.
[SVN r59911]
2010-02-25 19:05:01 +00:00
Daniel James
538b8fb95a
Stop using the deprecated BOOST_HAS_ macros in unordered and hash.
...
[SVN r59697]
2010-02-15 23:01:06 +00:00