reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 4c69eb5026e73185b8bf127a9b53b3def348e995
parent 34ade9bce83e7332d8fc02a0b3ea3d96d12ba529
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Tue,  2 Feb 2016 20:35:18 -0500

tiny bit of refactoring (header inclusion order)

Diffstat:
Msrc/dialog.cpp | 4++--
Msrc/remote.cpp | 6+++---
Msrc/richedit.cpp | 4++--
3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/dialog.cpp b/src/dialog.cpp @@ -17,10 +17,10 @@ #include "dialog.hpp" -#include <algorithm> - #include "control.hpp" +#include <algorithm> + using namespace std; DialogMap Dialog::s_instances; diff --git a/src/remote.cpp b/src/remote.cpp @@ -17,13 +17,13 @@ #include "remote.hpp" +#include "encoding.hpp" +#include "errors.hpp" + #include <fstream> #include <regex> #include <sstream> -#include "encoding.hpp" -#include "errors.hpp" - using namespace std; static char DATA_DELIMITER = '|'; diff --git a/src/richedit.cpp b/src/richedit.cpp @@ -22,12 +22,12 @@ // Starting here and onward is the Win32 implementation of RichEdit // The OS X implementation can be found in richedit.mm +#include "encoding.hpp" + #include <memory> #include <richedit.h> #include <sstream> -#include "encoding.hpp" - using namespace std; static void HandleLink(ENLINK *info, HWND handle)