Merge pull request #411 from janisozaur/include-guards

Add missing include guards
This commit is contained in:
Merry 2018-11-01 12:33:09 +00:00 committed by MerryMage
commit ff7947a769
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,8 @@
* General Public License version 2 or any later version. * General Public License version 2 or any later version.
*/ */
#pragma once
#include <string> #include <string>
#include "common/common_types.h" #include "common/common_types.h"

View file

@ -4,6 +4,8 @@
* General Public License version 2 or any later version. * General Public License version 2 or any later version.
*/ */
#pragma once
#include <type_traits> #include <type_traits>
#include "common/bit_util.h" #include "common/bit_util.h"