Skip to content

Commit 1a8be03

Browse files
committed
released 0.9.3
fix #6 missing <cstdint>
1 parent 9fefaf4 commit 1a8be03

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

bin/win32/ugrep-indexer.exe

0 Bytes
Binary file not shown.

bin/win64/ugrep-indexer.exe

0 Bytes
Binary file not shown.

src/ugrep-indexer.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
@copyright (c) BSD-3 License - see LICENSE.txt
3535
*/
3636

37-
#define UGREP_INDEXER_VERSION "0.9.2 beta"
37+
#define UGREP_INDEXER_VERSION "0.9.3 beta"
3838

3939
// use a task-parallel thread to decompress the stream into a pipe to search, also handles nested archives
4040
#define WITH_DECOMPRESSION_THREAD
@@ -216,6 +216,10 @@ inline uint64_t file_size(const struct stat& buf)
216216

217217
#include "input.h"
218218
#include "glob.hpp"
219+
#include <cstdio>
220+
#include <cstdlib>
221+
#include <cstdint>
222+
#include <cstring>
219223
#include <cinttypes>
220224
#include <iostream>
221225
#include <algorithm>

src/zstream.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
#include <cstdio>
4141
#include <cstdlib>
42+
#include <cstdint>
4243
#include <cstring>
43-
#include <cinttypes>
4444
#include <streambuf>
4545
#include <zlib.h>
4646

0 commit comments

Comments
 (0)