Compare commits
No commits in common. "d71ca134f223c1d314f46bc3eaef034e46567e11" and "d225f6ee7f0f75ace518426882a1e18b8c37d8f5" have entirely different histories.
d71ca134f2
...
d225f6ee7f
1
AST.cpp
1
AST.cpp
|
|
@ -2,7 +2,6 @@
|
|||
#include <iostream>
|
||||
#include <algorithm>
|
||||
#include <numeric>
|
||||
#include <cmath>
|
||||
|
||||
#include "AST.h"
|
||||
|
||||
|
|
|
|||
1
AST.h
1
AST.h
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
#include <memory>
|
||||
#include <variant>
|
||||
#include <vector>
|
||||
|
||||
#include "types.h"
|
||||
#include "token.h"
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -14,8 +14,8 @@ YACCFLAGS ?= -Wall --color -v -t -d -Wcounterexamples
|
|||
LANG = c++
|
||||
|
||||
# Compile C/C++ Code
|
||||
CC = gcc
|
||||
CXX = g++
|
||||
CC = clang
|
||||
CXX = clang++
|
||||
OUTPUT ?= $(PROJ).exe
|
||||
|
||||
COMMONFLAGS ?= -g -Wall
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
#include <memory>
|
||||
#include <utility>
|
||||
#include <variant>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "value.h"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue