diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-25 16:53:28 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-25 16:53:28 +0800 |
commit | 54121a0d787df1b730fa523b21040c312dda4bf6 (patch) | |
tree | e877533709f76cd894cd4610e3dda5567d963576 /CompilerContext.h | |
parent | fb328b778cdd0c6022ce072689cb3d8b333232f8 (diff) | |
download | dexon-solidity-54121a0d787df1b730fa523b21040c312dda4bf6.tar.gz dexon-solidity-54121a0d787df1b730fa523b21040c312dda4bf6.tar.zst dexon-solidity-54121a0d787df1b730fa523b21040c312dda4bf6.zip |
Styling changes for SourceLocation and friends
Diffstat (limited to 'CompilerContext.h')
-rw-r--r-- | CompilerContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerContext.h b/CompilerContext.h index 6ee52a5b..6e1dbfbc 100644 --- a/CompilerContext.h +++ b/CompilerContext.h @@ -103,7 +103,7 @@ public: /// Resets the stack of visited nodes with a new stack having only @c _node void resetVisitedNodes(ASTNode const* _node); /// Pops the stack of visited nodes - void popVisitedNodes() { m_visitedNodes.pop();} + void popVisitedNodes() { m_visitedNodes.pop(); } /// Pushes an ASTNode to the stack of visited nodes void pushVisitedNodes(ASTNode const* _node) { m_visitedNodes.push(_node); } |