aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm/SemanticInformation.h
diff options
context:
space:
mode:
authorDimitry <winsvega@mail.ru>2016-04-02 20:56:43 +0800
committerDimitry <winsvega@mail.ru>2016-04-02 20:56:43 +0800
commit858c41260d4cec26ba38ea3bd2ef71dcede63f7c (patch)
tree8dd03312a5f926f8dd95a4a7f0798c2b6624c1e3 /libevmasm/SemanticInformation.h
parentccbd3ff63feb696025c18211c3c93bab47f755b0 (diff)
downloaddexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.tar
dexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.tar.gz
dexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.tar.bz2
dexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.tar.lz
dexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.tar.xz
dexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.tar.zst
dexon-solidity-858c41260d4cec26ba38ea3bd2ef71dcede63f7c.zip
rename namespace for instruction.h/cpp in libevmasm
Diffstat (limited to 'libevmasm/SemanticInformation.h')
-rw-r--r--libevmasm/SemanticInformation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libevmasm/SemanticInformation.h b/libevmasm/SemanticInformation.h
index d18cac7c..0eda5ed5 100644
--- a/libevmasm/SemanticInformation.h
+++ b/libevmasm/SemanticInformation.h
@@ -50,9 +50,9 @@ struct SemanticInformation
/// the information in the current block header, memory, storage or stack.
static bool isDeterministic(AssemblyItem const& _item);
/// @returns true if the given instruction modifies memory.
- static bool invalidatesMemory(Instruction _instruction);
+ static bool invalidatesMemory(solidity::Instruction _instruction);
/// @returns true if the given instruction modifies storage (even indirectly).
- static bool invalidatesStorage(Instruction _instruction);
+ static bool invalidatesStorage(solidity::Instruction _instruction);
};
}