Skip to content

Making the repo suitable for having it as submodule #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bench/run.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <benchmark/benchmark.h>
#include <fstream>
#include <gzip/compress.hpp>
#include <gzip/decompress.hpp>
#include "compress.hpp"
#include "decompress.hpp"

static std::string open_file(std::string const& filename)
{
Expand Down
2 changes: 1 addition & 1 deletion include/gzip/compress.hpp → include/compress.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <gzip/config.hpp>
#include "config.hpp"

// zlib
#include <zlib.h>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion include/gzip/decompress.hpp → include/decompress.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <gzip/config.hpp>
#include "config.hpp"

// zlib
#include <zlib.h>
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions test/test_io.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include <catch.hpp>
#include <fstream>
#include <limits>
#include <gzip/compress.hpp>
#include <gzip/decompress.hpp>
#include <gzip/utils.hpp>
#include "compress.hpp"
#include "decompress.hpp"
#include "utils.hpp"

TEST_CASE("successful compress")
{
Expand Down
2 changes: 1 addition & 1 deletion test/test_version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <catch.hpp>
#include <gzip/version.hpp>
#include "version.hpp"

TEST_CASE("test version")
{
Expand Down