From 3267adcd14ba10e27a4b177e771fca9c9ab39646 Mon Sep 17 00:00:00 2001 From: Chase McDermott Date: Sat, 14 Jul 2018 16:42:01 -0500 Subject: Added default data locations to docs and other external tests. --- test/compilationTests/gnosis/Events/Event.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/compilationTests/gnosis/Events') diff --git a/test/compilationTests/gnosis/Events/Event.sol b/test/compilationTests/gnosis/Events/Event.sol index 177f61df..5b1a550c 100644 --- a/test/compilationTests/gnosis/Events/Event.sol +++ b/test/compilationTests/gnosis/Events/Event.sol @@ -101,7 +101,7 @@ contract Event { function getOutcomeTokens() public view - returns (OutcomeToken[]) + returns (OutcomeToken[] memory) { return outcomeTokens; } @@ -111,7 +111,7 @@ contract Event { function getOutcomeTokenDistribution(address owner) public view - returns (uint[] outcomeTokenDistribution) + returns (uint[] memory outcomeTokenDistribution) { outcomeTokenDistribution = new uint[](outcomeTokens.length); for (uint8 i = 0; i < outcomeTokenDistribution.length; i++) -- cgit v1.2.3