aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2017-12-27 12:03:09 +0100
committerMarco Poletti <poletti.marco@gmail.com>2017-12-27 12:03:09 +0100
commit45abc5865c967100e72e603102ceb6393a7530ea (patch)
tree740990699b9df80d1ba3b30446bf5ac3b2272e77
parentaf3cdcdbf87c4a1f1fcc7703ea0ea2cdb53b682b (diff)
downloadgoogle-fruit-45abc5865c967100e72e603102ceb6393a7530ea.tar.gz
Add a missing import to fix compilation of Fruit tests.
-rw-r--r--tests/class_construction_tracker.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/class_construction_tracker.h b/tests/class_construction_tracker.h
index 03db0ab..7bf1bfd 100644
--- a/tests/class_construction_tracker.h
+++ b/tests/class_construction_tracker.h
@@ -17,6 +17,8 @@
#ifndef FRUIT_CLASS_CONSTRUCTION_TRACKER_H
#define FRUIT_CLASS_CONSTRUCTION_TRACKER_H
+#include <cstddef>
+
/**
* This class is useful to keep track of how many instances of a given type are created during the entire program
* execution.