From 73045e49743e3991b2bdab9fd43a4c78b025bfe1 Mon Sep 17 00:00:00 2001 From: Mike Arpaia Date: Wed, 16 Sep 2015 15:48:44 -0700 Subject: [PATCH] Moving packs to top level include directory I could've swore that I did this already, but this moves `include/osquery/config/packs.h` to `include/osquery/packs.h`. --- include/osquery/config.h | 2 +- include/osquery/{config => }/packs.h | 0 osquery/config/packs.cpp | 2 +- osquery/config/tests/packs_tests.cpp | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename include/osquery/{config => }/packs.h (100%) diff --git a/include/osquery/config.h b/include/osquery/config.h index 1671b07e..8ea0c83b 100644 --- a/include/osquery/config.h +++ b/include/osquery/config.h @@ -21,9 +21,9 @@ #include #include -#include #include #include +#include #include #include diff --git a/include/osquery/config/packs.h b/include/osquery/packs.h similarity index 100% rename from include/osquery/config/packs.h rename to include/osquery/packs.h diff --git a/osquery/config/packs.cpp b/osquery/config/packs.cpp index 4a848815..17f8180f 100644 --- a/osquery/config/packs.cpp +++ b/osquery/config/packs.cpp @@ -13,8 +13,8 @@ #include #include -#include #include +#include #include namespace pt = boost::property_tree; diff --git a/osquery/config/tests/packs_tests.cpp b/osquery/config/tests/packs_tests.cpp index 8948f9e0..60a4f5d1 100644 --- a/osquery/config/tests/packs_tests.cpp +++ b/osquery/config/tests/packs_tests.cpp @@ -9,9 +9,9 @@ */ #include -#include #include #include +#include #include "osquery/core/test_util.h"