2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-28 16:00:53 +00:00

Rename bits.icc to bits_include.cc

This commit is contained in:
Jay Berkenbilt 2022-02-26 12:04:24 -05:00
parent dffd30ccbd
commit 6aa58d51be
5 changed files with 7 additions and 8 deletions

View File

@ -2,9 +2,9 @@
#include <qpdf/QIntC.hh>
// See comments in bits.cc
// See comments in bits_include.cc
#define BITS_READ 1
#include "bits.icc"
#include "bits_include.cc"
BitStream::BitStream(unsigned char const* p, size_t nbytes) :
start(p),

View File

@ -1,8 +1,8 @@
#include <qpdf/BitWriter.hh>
// See comments in bits.cc
// See comments in bits_include.cc
#define BITS_WRITE 1
#include "bits.icc"
#include "bits_include.cc"
BitWriter::BitWriter(Pipeline* pl) :
pl(pl),

View File

@ -7,11 +7,11 @@
#include <stdio.h>
#include <stdlib.h>
// See comments in bits.cc
// See comments in bits_include.cc
#define BITS_TESTING 1
#define BITS_READ 1
#define BITS_WRITE 1
#include "../libqpdf/bits.icc"
#include "../libqpdf/bits_include.cc"
static void
print_values(long long byte_offset, size_t bit_offset,

View File

@ -38,8 +38,7 @@ $(TARGETS_libtests): $(TARGETS_libqpdf) $(TARGETS_qpdf)
INCLUDES_libtests = include libqpdf
TC_SRCS_libtests = $(wildcard libqpdf/*.cc) $(wildcard libtests/*.cc) \
libqpdf/bits.icc
TC_SRCS_libtests = $(wildcard libqpdf/*.cc) $(wildcard libtests/*.cc)
# -----