Skip to content

Commit

Permalink
Format code and fix wrong variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
imorlxs committed Dec 11, 2024
1 parent ac5524d commit 7a2d6b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmake/bdm-dictionary
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static struct BioDynaMoDictInit {
f.write(' idirs << {0} << ":";\n'.format(id_processed))

# We don't need to pass the headers to the interpreter since we use modules
if not args.modules:
if not args.cxxmodules:
for h in args.headers:
f.write(' bdm::JitHeaders::Register("{0}");\n'.format(RemoveLongestPrefix(h, prefixes)))

Expand Down
6 changes: 3 additions & 3 deletions demo/soma_clustering/src/validation_criterion.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
#ifndef VALIDATION_CRITERION_H_
#define VALIDATION_CRITERION_H_

#include <cmath>
#include <functional>
#include <iostream>
#include <vector>
#include "biodynamo.h"
#include <iostream>
#include <functional>
#include <cmath>
#include "core/agent/agent.h"
#include "core/container/math_array.h"
#include "core/real_t.h"
Expand Down

0 comments on commit 7a2d6b3

Please sign in to comment.