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 GitHub
commit a5f35d45f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

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

View File

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