Skip to content

Commit be3a32f

Browse files
committed
Rename destructor_tree files to scope_tree
To match the new class names.
1 parent 3f57114 commit be3a32f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/goto-programs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SRC = allocate_objects.cpp \
55
class_identifier.cpp \
66
compute_called_functions.cpp \
77
destructor.cpp \
8-
destructor_tree.cpp \
8+
scope_tree.cpp \
99
elf_reader.cpp \
1010
ensure_one_backedge_per_target.cpp \
1111
format_strings.cpp \

src/goto-programs/goto_convert_class.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ Author: Daniel Kroening, [email protected]
1212
#ifndef CPROVER_GOTO_PROGRAMS_GOTO_CONVERT_CLASS_H
1313
#define CPROVER_GOTO_PROGRAMS_GOTO_CONVERT_CLASS_H
1414

15-
#include <list>
16-
#include <vector>
17-
#include <unordered_set>
18-
1915
#include <util/message.h>
2016
#include <util/namespace.h>
2117
#include <util/replace_expr.h>
2218
#include <util/std_code.h>
2319

2420
#include "allocate_objects.h"
25-
#include "destructor_tree.h"
2621
#include "goto_program.h"
22+
#include "scope_tree.h"
23+
24+
#include <list>
25+
#include <unordered_set>
26+
#include <vector>
2727

2828
class side_effect_expr_overflowt;
2929

src/goto-programs/destructor_tree.cpp renamed to src/goto-programs/scope_tree.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
\*******************************************************************/
88

9-
#include "destructor_tree.h"
9+
#include "scope_tree.h"
1010

1111
void scope_treet::add(
1212
const codet &destructor,
File renamed without changes.

0 commit comments

Comments
 (0)