Skip to content

Commit 6d37049

Browse files
author
Remi Delmas
committed
reformat imports to match the current clang-format rule
1 parent ebe7c4d commit 6d37049

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ansi-c/c_expr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ can_cast_expr<function_pointer_obeys_contract_exprt>(const exprt &base)
394394
/// \param expr: Source expression
395395
/// \return Object of type \ref function_pointer_obeys_contract_exprt
396396
inline const function_pointer_obeys_contract_exprt &
397-
function_pointer_obeys_contract_expr(const exprt &expr)
397+
to_function_pointer_obeys_contract_expr(const exprt &expr)
398398
{
399399
PRECONDITION(expr.id() == ID_function_pointer_obeys_contract);
400400
auto &ret = static_cast<const function_pointer_obeys_contract_exprt &>(expr);

src/langapi/language_util.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ Author: Daniel Kroening, [email protected]
88

99
#include "language_util.h"
1010

11-
#include <memory>
12-
1311
#include <util/invariant.h>
14-
#include <util/symbol_table.h>
1512
#include <util/namespace.h>
1613
#include <util/std_expr.h>
14+
#include <util/symbol_table.h>
1715

1816
#include "language.h"
1917
#include "mode.h"
2018

19+
#include <memory>
20+
2121
std::string from_expr_using_mode(
2222
const namespacet &ns,
2323
const irep_idt &mode,

0 commit comments

Comments
 (0)