src/counter.h: add header guard

This commit is contained in:
Roman Lebedev 2019-11-22 15:06:43 +03:00
parent c50ac68c50
commit 173aff82ee
No known key found for this signature in database
GPG Key ID: 083C3EBB4A1689E0

View File

@ -12,6 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef COUNTER_H_
#define COUNTER_H_
#include "benchmark/benchmark.h"
namespace benchmark {
@ -25,3 +28,5 @@ bool SameNames(UserCounters const& l, UserCounters const& r);
} // end namespace internal
} // end namespace benchmark
#endif // COUNTER_H_