Skip to content

Commit 2b4cd76

Browse files
author
Daniel Kroening
committed
missing #include <algorithm> for std::find_if_not
1 parent 392c765 commit 2b4cd76

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/java_bytecode/jar_file.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ Author: Diffblue Ltd
77
\*******************************************************************/
88

99
#include "jar_file.h"
10+
11+
#include <algorithm>
1012
#include <cctype>
11-
#include <util/suffix.h>
13+
1214
#include <util/invariant.h>
15+
#include <util/suffix.h>
16+
1317
#include "java_class_loader_limit.h"
1418

1519
void jar_filet::initialize_file_index(java_class_loader_limitt &limit)

0 commit comments

Comments
 (0)