Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 70a6f73

Browse files
author
Daniel Kroening
committedMay 2, 2018
missing #include <algorithm> for std::find_if_not
1 parent 392c765 commit 70a6f73

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/java_bytecode/jar_file.cpp

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

99
#include "jar_file.h"
10+
1011
#include <cctype>
11-
#include <util/suffix.h>
12+
#include <algorithm>
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)
Please sign in to comment.