diff options
author | Christian <c@ethdev.com> | 2015-01-31 23:50:33 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-31 23:50:33 +0800 |
commit | 4e440b6e5da8cb1122342377156f3706300f98c7 (patch) | |
tree | a43d94498131cc0e5846f013f3e01023a67dce39 /AST.h | |
parent | 6c8b5cabdc9e3f48d95e945d093a480c2ab5032e (diff) | |
download | dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.tar dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.tar.gz dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.tar.bz2 dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.tar.lz dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.tar.xz dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.tar.zst dexon-solidity-4e440b6e5da8cb1122342377156f3706300f98c7.zip |
Fix scoping of event arguments.
Diffstat (limited to 'AST.h')
-rwxr-xr-x | AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -471,7 +471,7 @@ private: /** * Definition of a (loggable) event. */ -class EventDefinition: public Declaration, public Documented +class EventDefinition: public Declaration, public VariableScope, public Documented { public: EventDefinition(Location const& _location, |