Skip to content

Commit

Permalink
REVERT ME: Avoid __DATE__ and __TIME__ for ccache
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Sep 6, 2023
1 parent 241b375 commit b8b04ab
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/duckdb/third_party/pcg/pcg_extras.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -622,10 +622,6 @@ struct static_arbitrary_seed {
? hash
: fnv((hash * IntType(16777619U)) ^ *pos, (pos+1));
}

public:
static constexpr IntType value = fnv(IntType(2166136261U ^ sizeof(IntType)),
__DATE__ __TIME__ __FILE__);
};

// Sometimes, when debugging or testing, it's handy to be able print the name
Expand Down Expand Up @@ -661,4 +657,4 @@ std::ostream& operator<<(std::ostream& out, printable_typename<T>) {

} // namespace pcg_extras

#endif // PCG_EXTRAS_HPP_INCLUDED
#endif // PCG_EXTRAS_HPP_INCLUDED

0 comments on commit b8b04ab

Please sign in to comment.