From ca483d438742be9650a5045e846b974f57c67e4f Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Thu, 12 Aug 2021 10:05:25 +0000 Subject: [PATCH] Format code, add format for strikethrough and underline, replace line with word --- main.cpp | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/main.cpp b/main.cpp index 9105006..7b9abdd 100644 --- a/main.cpp +++ b/main.cpp @@ -1,14 +1,14 @@ -#include <iostream> -#include <string> #include "ast.h" #include "gens.h" #include "parsers.h" +#include <iostream> +#include <string> -int main(int argc, char** argv) +int main(int argc, char **argv) { Document *d; parser *p = new tester(); - gen *g = new dot_gen(); + dot_gen *g = new dot_gen(); g->set_file("temp.dot"); d = p->parse(); d->visit(g); -- Gitblit v1.10.0