summaryrefslogtreecommitdiff
path: root/src/parsers/resultdeclnode.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-03 18:26:36 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-03 18:26:36 +0300
commit353973e99f0be7d685e98bbdd7a020c9cbd282e4 (patch)
treebe5bd75f315424388ed5ebbae881d5bc038cfa7e /src/parsers/resultdeclnode.cpp
parent35109669823accf98cd1563e3d4f9a3aceaf0207 (diff)
downloadparanucker-353973e99f0be7d685e98bbdd7a020c9cbd282e4.tar.gz
paranucker-353973e99f0be7d685e98bbdd7a020c9cbd282e4.tar.bz2
paranucker-353973e99f0be7d685e98bbdd7a020c9cbd282e4.tar.xz
paranucker-353973e99f0be7d685e98bbdd7a020c9cbd282e4.zip
Remove useless extern variable plugin_is_GPL_compatible from files.
Diffstat (limited to 'src/parsers/resultdeclnode.cpp')
-rw-r--r--src/parsers/resultdeclnode.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/parsers/resultdeclnode.cpp b/src/parsers/resultdeclnode.cpp
new file mode 100644
index 0000000..9d32fa3
--- /dev/null
+++ b/src/parsers/resultdeclnode.cpp
@@ -0,0 +1,40 @@
+/*
+ * 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/>.
+ */
+
+#include "parsers/resultdeclnode.h"
+
+#include "logger.h"
+
+#include "parsers/generic.h"
+
+#include "nodes/node.h"
+
+#include "localconsts.h"
+
+namespace Generic
+{
+
+void parseResultDeclNode(Node *node)
+{
+ fillType(node);
+ fillLocation(node);
+ Log::log(node);
+}
+
+}