Skip to content

Commit

Permalink
Moved header into the headers directory. #370
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan McLean authored and Jonathan McLean committed Jul 13, 2023
1 parent fb031f2 commit 1740277
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/build_disk_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "math_utils.h"
#include "index.h"
#include "partition.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"

namespace po = boost::program_options;

Expand Down
2 changes: 1 addition & 1 deletion apps/build_memory_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "index.h"
#include "utils.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"

#ifndef _WINDOWS
#include <sys/mman.h>
Expand Down
2 changes: 1 addition & 1 deletion apps/build_stitched_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "memory_mapper.h"
#include "parameters.h"
#include "utils.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"

namespace po = boost::program_options;
typedef std::tuple<std::vector<std::vector<uint32_t>>, uint64_t> stitch_indices_return_values;
Expand Down
2 changes: 1 addition & 1 deletion apps/range_search_disk_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "pq_flash_index.h"
#include "partition.h"
#include "timer.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"

#ifndef _WINDOWS
#include <sys/mman.h>
Expand Down
2 changes: 1 addition & 1 deletion apps/search_disk_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "pq_flash_index.h"
#include "timer.h"
#include "percentile_stats.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"

#ifndef _WINDOWS
#include <sys/mman.h>
Expand Down
2 changes: 1 addition & 1 deletion apps/search_memory_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "index.h"
#include "memory_mapper.h"
#include "utils.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"
#include "index_factory.h"

namespace po = boost::program_options;
Expand Down
2 changes: 1 addition & 1 deletion apps/test_insert_deletes_consolidate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <future>

#include "utils.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"
#include "index_factory.h"

#ifndef _WINDOWS
Expand Down
2 changes: 1 addition & 1 deletion apps/test_streaming_scenario.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <index_factory.h>

#include "utils.h"
#include "../src/program_options_utils.hpp"
#include "../include/program_options_utils.hpp"

#ifndef _WINDOWS
#include <sys/mman.h>
Expand Down
File renamed without changes.

0 comments on commit 1740277

Please sign in to comment.