Displaying 2 results from an estimated 2 matches for "8d390d1e".
2012 Mar 01
0
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
> + // Helper for test code to print hash codes.
> + void PrintTo(const hash_code &code, ::std::ostream *os) {
>
> What's with the extra leading :: before std::?
Have you ever tried:
namespace foo {
class std {};
}
using namespace foo;
#include <vector>
Well, I'm not sure that Chandler is guarding against this possibility,
but most library implementations of the
2012 Mar 01
2
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
// -- 'hash_code' class is an opaque type representing the hash code for
some
// data. It is the intended product of hashing, and can be used to
implement
vs.
// -- 'hash_value' is a function designed to be overloaded for each
// user-defined type which wishes to be used within a hashing context. It
The first paragraph has a hanging indent but the second and third