File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,12 @@ src/big-int/test-bigint.exe
30
30
31
31
# files stored by editors
32
32
* ~
33
+
34
+ # libs downloaded by make [name]-download
33
35
libzip /
36
+ zlib /
37
+ minisat * /
38
+ glucose-syrup /
34
39
35
40
# flex/bison generated files
36
41
src /ansi-c /ansi_c_lex.yy.cpp
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ size_t get_variable_slots(const code_typet::parametert ¶m)
232
232
return count_slots (0 , param);
233
233
}
234
234
235
- bool is_contructor (const class_typet::methodt &method)
235
+ bool is_constructor (const class_typet::methodt &method)
236
236
{
237
237
const std::string &name (id2string (method.get_name ()));
238
238
const std::string::size_type &npos (std::string::npos);
@@ -382,7 +382,7 @@ void java_bytecode_convert_methodt::convert(
382
382
method.set (ID_abstract, m.is_abstract );
383
383
method.set (ID_is_virtual, is_virtual);
384
384
385
- if (is_contructor (method))
385
+ if (is_constructor (method))
386
386
method.set (ID_constructor, true );
387
387
388
388
method.type ()=member_type;
You can’t perform that action at this time.
0 commit comments