commit | 26b815fa8c62e42b4c465e02c72e64c558a6b6ad | [log] [tgz] |
---|---|---|
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | Wed Jan 04 13:32:47 2017 -0500 |
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | Fri Jan 13 16:26:06 2017 -0500 |
tree | 7bbb6c3c5733016129043ef3fe979b4617da7bc8 | |
parent | 9c7b6e0668d91f8a8513ca11495e1e309d373535 [diff] [blame] |
Replace include guards with #pragma once Change-Id: I16adc78d397e3239440206e8e70ebbd5e0963adb Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/directory.hpp b/directory.hpp index 9a12a3c..0a9d580 100644 --- a/directory.hpp +++ b/directory.hpp
@@ -1,5 +1,4 @@ -#ifndef __DIRECTORY_H -#define __DIRECTORY_H +#pragma once #include <string> #include <dirent.h> @@ -17,6 +16,4 @@ DIR* dirp; }; -#endif - // vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4