mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
219 B
C
16 lines
219 B
C
|
#pragma once
|
||
|
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
|
||
|
#include "libstdlib/stub.h"
|
||
|
|
||
|
namespace solidity::stdlib
|
||
|
{
|
||
|
|
||
|
static std::map<std::string, std::string> sources = {
|
||
|
{ "std.stub", stub }
|
||
|
};
|
||
|
|
||
|
} // namespace solidity::stdlib
|