From 81fea73e79f104efcb9f5207a7f4af2f59f7c6af Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Wed, 10 Feb 2016 16:38:50 -0500 Subject: [PATCH] Move MEMORY_MODE enum inside include guard. --- common/memory.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/memory.h b/common/memory.h index cefbf82..e71dc99 100644 --- a/common/memory.h +++ b/common/memory.h @@ -16,6 +16,11 @@ * limitations under the License. */ +#ifndef MEMORY_H_ +#define MEMORY_H_ + +#include + enum { MEMORY_MODE_DEFAULT, @@ -23,11 +28,6 @@ enum MEMORY_MODE_USAGE_PERCENTAGE }; -#ifndef MEMORY_H_ -#define MEMORY_H_ - -#include - std::string mem_string( bool, int ); #endif