Skip to content

Commit

Permalink
fixup! fixup! src: enable more detailed memory tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax committed Jul 13, 2018
1 parent 736085f commit 00fd890
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/memory_tracker.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ class MemoryTracker {
template <typename T>
inline void TrackField(const char* name, const std::basic_string<T>& value);
template <typename T, typename test_for_number =
char[std::numeric_limits<T>::is_specialized * 2 - 1],
typename std::enable_if<
std::numeric_limits<T>::is_specialized, bool>::type,
typename dummy = bool>
inline void TrackField(const char* name, const T& value);
template <typename T, typename U>
Expand Down

0 comments on commit 00fd890

Please sign in to comment.