Skip to content

Commit

Permalink
Fix includes (iwyu)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed May 27, 2024
1 parent 3c651cf commit f67c81c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/libsemigroups/aho-corasick.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
#ifndef LIBSEMIGROUPS_AHO_CORASICK_HPP_
#define LIBSEMIGROUPS_AHO_CORASICK_HPP_

#include <algorithm> // for copy, max
#include <memory> // for allocator_traits<>::value_type
#include <set> // for set
#include <stack> // for stack
#include <stddef.h> // for size_t
#include <string> // for string
#include <unordered_map> // for unordered_map
#include <vector> // for vector

Expand Down
3 changes: 3 additions & 0 deletions src/aho-corasick.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@
// This file contains the implementation of the AhoCorasick class.
#include "libsemigroups/aho-corasick.hpp"

#include <algorithm> // for max, copy, reverse
#include <array> // for array
#include <string> // for basic_string, string, to_string
#include <string_view> // for basic_string_view, string_view

#include "libsemigroups/constants.hpp" // for Undefined, UNDEFINED, operator==
#include "libsemigroups/debug.hpp" // for LIBSEMIGROUPS_ASSERT
#include "libsemigroups/detail/fmt.hpp" // for format
#include "libsemigroups/dot.hpp" // for Dot, Dot::Edge, Dot::Node
#include "libsemigroups/exception.hpp" // for LIBSEMIGROUPS_EXCEPTION
#include "libsemigroups/types.hpp" // for word_type, letter_type

namespace libsemigroups {
Expand Down

0 comments on commit f67c81c

Please sign in to comment.