Skip to content
This repository was archived by the owner on Feb 6, 2023. It is now read-only.

Commit 25cc832

Browse files
samhocevarstorm-ptr
authored andcommitted
Relax constraints on include directory naming.
With this change, the .hpp files can find the includes in the detail/ directory without necessarily being in a directory called “step”.
1 parent 2be3c1e commit 25cc832

7 files changed

+9
-9
lines changed

detail/hirschberg.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef STEP_HIRSCHBERG_HPP
44
#define STEP_HIRSCHBERG_HPP
55

6-
#include <step/detail/utility.hpp>
6+
#include "utility.hpp"
77

88
namespace step::hirschberg {
99

edit_distance.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#define STEP_EDIT_DISTANCE_HPP
55

66
#include <optional>
7-
#include <step/detail/hirschberg.hpp>
7+
#include "detail/hirschberg.hpp"
88

99
namespace step::edit_distance {
1010
namespace detail {

longest_common_subsequence.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef STEP_LONGEST_COMMON_SUBSEQUENCE_HPP
44
#define STEP_LONGEST_COMMON_SUBSEQUENCE_HPP
55

6-
#include <step/detail/hirschberg.hpp>
6+
#include "detail/hirschberg.hpp"
77

88
namespace step::longest_common_subsequence {
99
namespace detail {

longest_common_substring.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#ifndef STEP_LONGEST_COMMON_SUBSTRING_HPP
44
#define STEP_LONGEST_COMMON_SUBSTRING_HPP
55

6-
#include <step/suffix_array.hpp>
7-
#include <step/suffix_tree.hpp>
6+
#include "suffix_array.hpp"
7+
#include "suffix_tree.hpp"
88

99
namespace step::longest_common_substring {
1010
namespace detail {

longest_repeated_substring.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#ifndef STEP_LONGEST_REPEATED_SUBSTRING_HPP
44
#define STEP_LONGEST_REPEATED_SUBSTRING_HPP
55

6-
#include <step/suffix_array.hpp>
7-
#include <step/suffix_tree.hpp>
6+
#include "suffix_array.hpp"
7+
#include "suffix_tree.hpp"
88

99
namespace step::longest_repeated_substring {
1010
namespace detail {

suffix_array.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef STEP_SUFFIX_ARRAY_HPP
44
#define STEP_SUFFIX_ARRAY_HPP
55

6-
#include <step/detail/utility.hpp>
6+
#include "detail/utility.hpp"
77

88
namespace step {
99

suffix_tree.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include <optional>
77
#include <stack>
8-
#include <step/detail/utility.hpp>
8+
#include "detail/utility.hpp"
99
#include <unordered_map>
1010

1111
namespace step {

0 commit comments

Comments
 (0)