Skip to content

Commit

Permalink
Moved includes from header to cpp file
Browse files Browse the repository at this point in the history
  • Loading branch information
DoeringChristian committed Nov 28, 2024
1 parent 72e2b1b commit 74261f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/record_ts.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#include "record_ts.h"
#include "call.h"
#include "common.h"
#include "drjit-core/jit.h"
#include "eval.h"
#include "internal.h"
#include "log.h"
#include "malloc.h"
#include "profile.h"
#include "util.h"
#include "var.h"

const char *op_type_name[(int) OpType::Count]{
Expand Down
6 changes: 0 additions & 6 deletions src/record_ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,9 @@
* executed and the content of the variables will have changed.
*/

#include "call.h"
#include "drjit-core/hash.h"
#include "drjit-core/jit.h"
#include "eval.h"
#include "internal.h"
#include "log.h"
#include "malloc.h"
#include "util.h"
#include "var.h"
#include <cstdint>

void jitc_freeze_start(JitBackend backend, const uint32_t *inputs,
Expand Down

0 comments on commit 74261f8

Please sign in to comment.