Skip to content

Commit 87c2a68

Browse files
authored
Merge pull request #2577 from owen-jones-diffblue/owen-jones-diffblue/make-linter-happier
Fix whitespace errors and a typo from #2505
2 parents 45eae64 + a1b9e07 commit 87c2a68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jbmc/src/java_bytecode/convert_java_nondet.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Author: Reuben Thomas, [email protected]
2323
#include "java_object_factory.h" // gen_nondet_init
2424

2525
/// Returns true if `expr` is a nondet pointer that isn't a function pointer or
26-
/// a void* pointer as these can be meaningfully non-det initalized.
26+
/// a void* pointer as these can be meaningfully non-det initialized.
2727
static bool is_nondet_pointer(exprt expr)
2828
{
2929
// If the expression type doesn't have a subtype then I guess it's primitive
@@ -97,7 +97,7 @@ static std::pair<goto_programt::targett, bool> insert_nondet_init_code(
9797
continue;
9898
}
9999

100-
const auto &nondet_expr = to_side_effect_expr_nondet(op);
100+
const auto &nondet_expr = to_side_effect_expr_nondet(op);
101101

102102
if(!nondet_expr.get_nullable())
103103
object_factory_parameters.max_nonnull_tree_depth = 1;

0 commit comments

Comments
 (0)