forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix whitespace errors and a typo from diffblue#2505
- Loading branch information
Owen Jones
committed
Jul 13, 2018
1 parent
45eae64
commit a1b9e07
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ Author: Reuben Thomas, [email protected] | |
#include "java_object_factory.h" // gen_nondet_init | ||
|
||
/// Returns true if `expr` is a nondet pointer that isn't a function pointer or | ||
/// a void* pointer as these can be meaningfully non-det initalized. | ||
/// a void* pointer as these can be meaningfully non-det initialized. | ||
static bool is_nondet_pointer(exprt expr) | ||
{ | ||
// 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( | |
continue; | ||
} | ||
|
||
const auto &nondet_expr = to_side_effect_expr_nondet(op); | ||
const auto &nondet_expr = to_side_effect_expr_nondet(op); | ||
|
||
if(!nondet_expr.get_nullable()) | ||
object_factory_parameters.max_nonnull_tree_depth = 1; | ||
|