Skip to content

Commit

Permalink
Change include directory name from gd100 to katerm
Browse files Browse the repository at this point in the history
  • Loading branch information
dextercd committed Aug 29, 2021
1 parent 864d3b7 commit 4e4cb2a
Show file tree
Hide file tree
Showing 19 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions fuzzing/fuzztest.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <cstdint>
#include <gd100/terminal.hpp>
#include <gd100/terminal_decoder.hpp>
#include <katerm/terminal.hpp>
#include <katerm/terminal_decoder.hpp>

extern "C" int LLVMFuzzerTestOneInput(
std::uint8_t const* const bytes,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/position.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <iostream>

#include <gd100/position.hpp>
#include <katerm/position.hpp>

namespace gd100 {

Expand Down
4 changes: 2 additions & 2 deletions src/terminal.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <iostream>
#include <algorithm>

#include <gd100/terminal.hpp>
#include <gd100/terminal_decoder.hpp>
#include <katerm/terminal.hpp>
#include <katerm/terminal_decoder.hpp>
#include <cw/character_width.hpp>

namespace gd100 {
Expand Down
4 changes: 2 additions & 2 deletions src/terminal_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include <algorithm>
#include <charconv>

#include <gd100/terminal_decoder.hpp>
#include <gd100/colours.hpp>
#include <katerm/terminal_decoder.hpp>
#include <katerm/colours.hpp>

namespace gd100 {

Expand Down
2 changes: 1 addition & 1 deletion src/terminal_instructee.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <gd100/terminal.hpp>
#include <katerm/terminal.hpp>
#include <iostream>

namespace gd100 {
Expand Down
2 changes: 1 addition & 1 deletion src/terminal_screen.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <type_traits>
#include <algorithm>

#include <gd100/terminal_screen.hpp>
#include <katerm/terminal_screen.hpp>

namespace gd100 {

Expand Down
4 changes: 2 additions & 2 deletions tests/decoding.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <catch2/catch.hpp>

#include <gd100/terminal.hpp>
#include <gd100/terminal_decoder.hpp>
#include <katerm/terminal.hpp>
#include <katerm/terminal_decoder.hpp>

TEST_CASE("utf-8", "[utf-8]") {
auto decode_utf8 = [](auto const& utf8) {
Expand Down
4 changes: 2 additions & 2 deletions tests/regressions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

#include <catch2/catch.hpp>

#include <gd100/terminal.hpp>
#include <gd100/terminal_decoder.hpp>
#include <katerm/terminal.hpp>
#include <katerm/terminal_decoder.hpp>

template<std::size_t N>
void run(unsigned char (&crash_case)[N])
Expand Down
4 changes: 2 additions & 2 deletions tests/terminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include <catch2/catch.hpp>

#include <gd100/terminal.hpp>
#include <gd100/terminal_decoder.hpp>
#include <katerm/terminal.hpp>
#include <katerm/terminal_decoder.hpp>

struct test_data {
gd100::terminal t;
Expand Down

0 comments on commit 4e4cb2a

Please sign in to comment.