aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-25 00:31:06 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-25 00:31:06 +0800
commitfb328b778cdd0c6022ce072689cb3d8b333232f8 (patch)
tree37fa70e738e2df43d1f912ff5cc4b02af39472fd /AST.h
parent12c32392abc4af2f7da0793e178705c55c742e79 (diff)
downloaddexon-solidity-fb328b778cdd0c6022ce072689cb3d8b333232f8.tar.gz
dexon-solidity-fb328b778cdd0c6022ce072689cb3d8b333232f8.tar.zst
dexon-solidity-fb328b778cdd0c6022ce072689cb3d8b333232f8.zip
Changes after rebase on top of Array Parsing
Diffstat (limited to 'AST.h')
-rw-r--r--AST.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST.h b/AST.h
index 27dc008a..e2f464ac 100644
--- a/AST.h
+++ b/AST.h
@@ -662,7 +662,7 @@ private:
class ArrayTypeName: public TypeName
{
public:
- ArrayTypeName(Location const& _location, ASTPointer<TypeName> const& _baseType,
+ ArrayTypeName(SourceLocation const& _location, ASTPointer<TypeName> const& _baseType,
ASTPointer<Expression> const& _length):
TypeName(_location), m_baseType(_baseType), m_length(_length) {}
virtual void accept(ASTVisitor& _visitor) override;