summaryrefslogtreecommitdiff
path: root/src/nodes/parmdeclnode.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-06 17:52:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-06 17:52:07 +0300
commit13cce0744e367b389378e388253cbacdbd2599ed (patch)
treec6e0647657a442beac9586d2b9381d0746ff3225 /src/nodes/parmdeclnode.h
parent00ee65902beac5b83a85cd5519c89323813b3d72 (diff)
downloadparanucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.gz
paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.bz2
paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.xz
paranucker-13cce0744e367b389378e388253cbacdbd2599ed.zip
Remove word node from node file names.
Diffstat (limited to 'src/nodes/parmdeclnode.h')
-rw-r--r--src/nodes/parmdeclnode.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/nodes/parmdeclnode.h b/src/nodes/parmdeclnode.h
deleted file mode 100644
index 98b986c..0000000
--- a/src/nodes/parmdeclnode.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2015 Andrei Karas
- *
- * This file is part of AstDumper.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef NODES_PARMDECLNODE_H
-#define NODES_PARMDECLNODE_H
-
-#include "nodes/integercstnode.h"
-
-#include "nodes/base/declnode.h"
-#include "nodes/base/typenode.h"
-
-struct ParmDeclNode : public DeclNode
-{
- ParmDeclNode() :
- DeclNode(),
- declType(nullptr),
- parmSize(nullptr),
- isRegister(false)
- {
- }
-
- TypeNode *declType;
- IntegerCstNode *parmSize;
- bool isRegister;
-};
-
-#endif // NODES_PARMDECLNODE_H