From a442a4773a3aa53209b4b1ebf95c3ec87eccd676 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Mon, 6 Jan 2014 09:21:15 -0800 Subject: [PATCH] use default compiler --- include/connectionhandler.h | 4 ++-- src/Makefile | 2 +- src/includes.h | 2 -- tests/Makefile | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/include/connectionhandler.h b/include/connectionhandler.h index 5854149..5233948 100644 --- a/include/connectionhandler.h +++ b/include/connectionhandler.h @@ -41,7 +41,7 @@ public: * state and can no longer be used. * * This method has an empty default implementation, although you are very - * much advised to do implement it. Because when an error occurs, the connection + * much advised to implement it. Because when an error occurs, the connection * is no longer usable, so you probably want to know. * * @param connection The connection that entered the error state @@ -58,7 +58,7 @@ public: * ready (and this onConnected method to be called) before you can start * using the Connection object. However, this AMQP library will cache all * methods that you call before the connection is ready, so in reality there - * is no reason to wait. + * is no real reason to wait. * * @param connection The connection that can now be used */ diff --git a/src/Makefile b/src/Makefile index 25e88d7..b7bfee2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -CPP = g++-4.8 +CPP = g++ RM = rm -f CPPFLAGS = -Wall -c -I. -O2 -flto -std=c++11 -g LD = g++ diff --git a/src/includes.h b/src/includes.h index 80d3d04..6d3b1b1 100644 --- a/src/includes.h +++ b/src/includes.h @@ -24,7 +24,5 @@ #include "basicframe.h" #include "transactionframe.h" -// for debugging -#include diff --git a/tests/Makefile b/tests/Makefile index 5c06aee..1c1dec2 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,4 +1,4 @@ -CPP = g++-4.8 +CPP = g++ CPPFLAGS = -Wall -c -I. -O2 -flto -std=c++11 -g LD = g++ LDFLAGS = -llibamqp -lcopernica_event -lcopernica_network -lev