8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00
firebird-mirror/extern/re2/util/malloc_counter.h
Adriano dos Santos Fernandes 2e35cc66e7 Update re2 to version 2021-04-01.
2021-05-26 10:07:49 -03:00

20 lines
505 B
C++

// Copyright 2009 The RE2 Authors. All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef UTIL_MALLOC_COUNTER_H_
#define UTIL_MALLOC_COUNTER_H_
namespace testing {
class MallocCounter {
public:
MallocCounter(int x) {}
static const int THIS_THREAD_ONLY = 0;
long long HeapGrowth() { return 0; }
long long PeakHeapGrowth() { return 0; }
void Reset() {}
};
} // namespace testing
#endif // UTIL_MALLOC_COUNTER_H_