From 0a9c7e3d744ce9003643e653c2422fa6e766289d Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 9 Apr 2014 11:35:20 -0700 Subject: [PATCH] add an include guard to Stats --- interface/src/ui/Stats.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/interface/src/ui/Stats.h b/interface/src/ui/Stats.h index ad2a3c9bf5..3d3e930b85 100644 --- a/interface/src/ui/Stats.h +++ b/interface/src/ui/Stats.h @@ -9,6 +9,9 @@ // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // +#ifndef _hifi_Stats_h +#define _hifi_Stats_h + #include #include @@ -42,3 +45,5 @@ private: int _lastHorizontalOffset; }; + +#endif