aboutsummaryrefslogtreecommitdiff
path: root/research
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2021-09-08 09:18:45 +0200
committerGitHub <noreply@github.com>2021-09-08 09:18:45 +0200
commit62662f87cdd96deda90ac817de94e3c4af75226a (patch)
tree6052197cad3d5c40792f2acdc5b8521efd9f4b67 /research
parent698e3a7f9d3000fa44174f5be415bf713f71bd0e (diff)
downloadbrotli-62662f87cdd96deda90ac817de94e3c4af75226a.zip
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.gz
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.bz2
Strip "./" in includes (#925)
Co-authored-by: Eugene Kliuchnikov <eustas@chromium.org>
Diffstat (limited to 'research')
-rw-r--r--research/deorummolae.cc2
-rw-r--r--research/dictionary_generator.cc6
-rw-r--r--research/draw_histogram.cc2
-rw-r--r--research/durchschlag.cc2
-rw-r--r--research/sieve.cc2
5 files changed, 7 insertions, 7 deletions
diff --git a/research/deorummolae.cc b/research/deorummolae.cc
index 23ac1aa..27e06a6 100644
--- a/research/deorummolae.cc
+++ b/research/deorummolae.cc
@@ -1,4 +1,4 @@
-#include "./deorummolae.h"
+#include "deorummolae.h"
#include <array>
#include <cstdio>
diff --git a/research/dictionary_generator.cc b/research/dictionary_generator.cc
index 7df55ad..c30e49b 100644
--- a/research/dictionary_generator.cc
+++ b/research/dictionary_generator.cc
@@ -8,9 +8,9 @@
#endif
#include <vector>
-#include "./deorummolae.h"
-#include "./durchschlag.h"
-#include "./sieve.h"
+#include "deorummolae.h"
+#include "durchschlag.h"
+#include "sieve.h"
/* This isn't a definitive list of "--foo" arguments, only those that take an
* additional "=#" integer parameter, like "--foo=20" or "--foo=32K".
diff --git a/research/draw_histogram.cc b/research/draw_histogram.cc
index 5341dc1..3ae42dd 100644
--- a/research/draw_histogram.cc
+++ b/research/draw_histogram.cc
@@ -19,7 +19,7 @@
using gflags::ParseCommandLineFlags;
#include "third_party/absl/flags/flag.h"
-#include "./read_dist.h"
+#include "read_dist.h"
DEFINE_int32(height, 1000, "Height of the resulting histogam.");
DEFINE_int32(width, 8000, "Width of the resulting histogam.");
diff --git a/research/durchschlag.cc b/research/durchschlag.cc
index 6cbdd8c..9a98a50 100644
--- a/research/durchschlag.cc
+++ b/research/durchschlag.cc
@@ -1,4 +1,4 @@
-#include "./durchschlag.h"
+#include "durchschlag.h"
#include <algorithm>
#include <exception> /* terminate */
diff --git a/research/sieve.cc b/research/sieve.cc
index 4d147e1..15572ee 100644
--- a/research/sieve.cc
+++ b/research/sieve.cc
@@ -1,4 +1,4 @@
-#include "./sieve.h"
+#include "sieve.h"
/* Pointer to position in (combined corpus) text. */
typedef uint32_t TextIdx;