aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/include/ast_expression.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-03-01 17:18:54 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-03-01 17:18:54 +0000
commit9e761324895d098a87f0ba66b7eb1794cd3ed6b4 (patch)
treeb46b0eb0eb91f6784d586acb8611495de81b92e4 /c_parser/include/ast_expression.hpp
parent2e5cacc6633a6973f8e96adc6bafa633487fc2a1 (diff)
downloadCompiler-9e761324895d098a87f0ba66b7eb1794cd3ed6b4.tar.gz
Compiler-9e761324895d098a87f0ba66b7eb1794cd3ed6b4.zip
Finished parser
Diffstat (limited to 'c_parser/include/ast_expression.hpp')
-rw-r--r--c_parser/include/ast_expression.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/c_parser/include/ast_expression.hpp b/c_parser/include/ast_expression.hpp
index 87db997..f67d2d7 100644
--- a/c_parser/include/ast_expression.hpp
+++ b/c_parser/include/ast_expression.hpp
@@ -6,16 +6,16 @@
#include <string>
#include <iostream>
-class ast_Expression : public ast_Base {
+class Expression : public Base {
private:
public:
- ast_Expression() {}
+ Expression() {}
virtual void print() const {
}
- virtual void push(const ast_Base* _base) const {
+ virtual void push(const Base* _base) const {
std::cerr << "Can't call this function for this type" << std::endl;
(void)_base;
}