cpp: Add missing '#pragma once' in evmc.hpp

This commit is contained in:
Paweł Bylica 2019-05-29 10:46:11 +02:00
parent 0c49f7abed
commit 41db54802f
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* Copyright 2018-2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
#pragma once
#include <evmc/evmc.h>
#include <evmc/helpers.h>

View File

@ -12,3 +12,12 @@
#include <evmc/instructions.h>
#include <evmc/loader.h>
#include <evmc/utils.h>
// Include again to check if headers have proper include guards.
#include <evmc/evmc.h>
#include <evmc/evmc.hpp>
#include <evmc/helpers.h>
#include <evmc/helpers.hpp>
#include <evmc/instructions.h>
#include <evmc/loader.h>
#include <evmc/utils.h>