Skip to content

Commit

Permalink
Undo reordering of #include done by clang-format.
Browse files Browse the repository at this point in the history
The header file generated by engine-object-file doesn't #include the wasm types it needs and relies on these being included before it.
  • Loading branch information
nlewycky committed Feb 15, 2021
1 parent 2fc0b8f commit 0157016
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/cli/src/commands/wasmer_create_exe_main.c
@@ -1,6 +1,6 @@
#include "my_wasm.h"
#include "wasm.h"
#include "wasmer_wasm.h"
#include "wasm.h"
#include "my_wasm.h"

#include <stdio.h>
#include <stdlib.h>
Expand Down
@@ -1,6 +1,6 @@
#include "my_wasm.h"
#include "wasm.h"
#include "wasmer_wasm.h"
#include "wasm.h"
#include "my_wasm.h"

#include <stdio.h>
#include <stdlib.h>
Expand Down

0 comments on commit 0157016

Please sign in to comment.