From fb5d25fc81668da4a9b05b71b977c16aa7f83b6d Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Fri, 6 Jul 2012 14:06:21 -0700 Subject: [PATCH] The cpp file's header should be included first --- cpp/ycm/Completer.cpp | 2 +- cpp/ycm/Future.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/ycm/Completer.cpp b/cpp/ycm/Completer.cpp index b81296e0..e5727396 100644 --- a/cpp/ycm/Completer.cpp +++ b/cpp/ycm/Completer.cpp @@ -15,8 +15,8 @@ // You should have received a copy of the GNU General Public License // along with YouCompleteMe. If not, see . -#include "standard.h" #include "Completer.h" +#include "standard.h" #include "Utils.h" #include diff --git a/cpp/ycm/Future.cpp b/cpp/ycm/Future.cpp index 72920f20..ea6e989e 100644 --- a/cpp/ycm/Future.cpp +++ b/cpp/ycm/Future.cpp @@ -15,8 +15,8 @@ // You should have received a copy of the GNU General Public License // along with YouCompleteMe. If not, see . -#include "standard.h" #include "Future.h" +#include "standard.h" #include "Result.h" namespace YouCompleteMe