Add missing header guards

This commit is contained in:
Alex Beregszaszi 2018-12-12 15:47:05 +00:00
parent 5e0c312dad
commit c863cbf80d
4 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,8 @@
* Public compiler API.
*/
#pragma once
#include <stdbool.h>
#ifdef __cplusplus

View File

@ -21,6 +21,8 @@
* Solidity AST to EVM bytecode compiler for expressions.
*/
#pragma once
#include <functional>
#include <memory>
#include <boost/noncopyable.hpp>

View File

@ -18,6 +18,8 @@
* Common code generator for translating Yul / inline assembly to EVM and EVM1.5.
*/
#pragma once
#include <libyul/backends/evm/EVMAssembly.h>
#include <libyul/backends/evm/EVMDialect.h>

View File

@ -18,6 +18,7 @@
* Compiler that transforms Yul Objects to EVM bytecode objects.
*/
#pragma once
namespace yul
{