rename namespace for instruction.h/cpp in libevmasm

This commit is contained in:
Dimitry
2016-04-02 15:56:43 +03:00
parent ccbd3ff63f
commit 858c41260d
29 changed files with 596 additions and 594 deletions
+2 -2
View File
@@ -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);
};
}