aboutsummaryrefslogtreecommitdiffstats
path: root/ASTForward.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-10-20 20:00:37 +0800
committerChristian <c@ethdev.com>2014-10-20 22:23:49 +0800
commitbe885dc3cf3da61278a22493b6c7510c6121e0a9 (patch)
tree1e602ffa535b058692d480fe1942a2139dcc6bbb /ASTForward.h
parentf0c334670dfef7c1b1d1ae610cf19ae9ad2822ca (diff)
downloaddexon-solidity-be885dc3cf3da61278a22493b6c7510c6121e0a9.tar.gz
dexon-solidity-be885dc3cf3da61278a22493b6c7510c6121e0a9.tar.zst
dexon-solidity-be885dc3cf3da61278a22493b6c7510c6121e0a9.zip
Pointer type cleanup: Use ASTPointer only for AST nodes and shared_ptr for type
pointer.
Diffstat (limited to 'ASTForward.h')
-rw-r--r--ASTForward.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ASTForward.h b/ASTForward.h
index 46fe8393..c9a780f5 100644
--- a/ASTForward.h
+++ b/ASTForward.h
@@ -69,7 +69,7 @@ class Literal;
// not do reference counting but point to a special memory area that is completely released
// explicitly.
template <class T>
-using ptr = std::shared_ptr<T>;
+using ASTPointer = std::shared_ptr<T>;
using ASTString = std::string;