diff options
author | chriseth <chris@ethereum.org> | 2017-06-30 22:59:53 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-02 05:59:08 +0800 |
commit | c78a3a0b01d934c31f599523bb941d0a6e6ecbc8 (patch) | |
tree | fe34c883a108a8cec4ef7ffc9fefd87ad31a3971 /solc/jsonCompiler.cpp | |
parent | dd9416be29e9ac22b9b2a33cb9424514067cc6bf (diff) | |
download | dexon-solidity-c78a3a0b01d934c31f599523bb941d0a6e6ecbc8.tar.gz dexon-solidity-c78a3a0b01d934c31f599523bb941d0a6e6ecbc8.tar.zst dexon-solidity-c78a3a0b01d934c31f599523bb941d0a6e6ecbc8.zip |
Add other licenses.
Diffstat (limited to 'solc/jsonCompiler.cpp')
-rw-r--r-- | solc/jsonCompiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solc/jsonCompiler.cpp b/solc/jsonCompiler.cpp index adf991d6..de797b3c 100644 --- a/solc/jsonCompiler.cpp +++ b/solc/jsonCompiler.cpp @@ -266,8 +266,8 @@ extern "C" { extern char const* license() { - /// TOOD: include the copyright information on the top. - return licenseText; + static string fullLicenseText = otherLicenses + licenseText; + return fullLicenseText.c_str(); } extern char const* version() { |