2018-08-27 22:13:33 +02:00
|
|
|
/* EVMC: Ethereum Client-VM Connector API.
|
2019-04-24 16:12:13 +02:00
|
|
|
* Copyright 2018-2019 The EVMC Authors.
|
2019-01-18 13:49:54 +01:00
|
|
|
* Licensed under the Apache License, Version 2.0.
|
2018-08-27 22:13:33 +02:00
|
|
|
*/
|
|
|
|
|
2019-01-18 13:49:54 +01:00
|
|
|
// Test compilation of C and C++ public headers.
|
|
|
|
|
2018-08-27 22:13:33 +02:00
|
|
|
#include <evmc/evmc.h>
|
2019-03-19 19:23:06 +00:00
|
|
|
#include <evmc/evmc.hpp>
|
2019-05-08 15:06:36 +01:00
|
|
|
#include <evmc/helpers.h>
|
2019-01-18 13:49:54 +01:00
|
|
|
#include <evmc/instructions.h>
|
|
|
|
#include <evmc/loader.h>
|
2018-08-27 22:13:33 +02:00
|
|
|
#include <evmc/utils.h>
|
2019-05-29 10:46:11 +02:00
|
|
|
|
|
|
|
// Include again to check if headers have proper include guards.
|
|
|
|
#include <evmc/evmc.h>
|
|
|
|
#include <evmc/evmc.hpp>
|
|
|
|
#include <evmc/helpers.h>
|
|
|
|
#include <evmc/instructions.h>
|
|
|
|
#include <evmc/loader.h>
|
|
|
|
#include <evmc/utils.h>
|