Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ir/import-name.h → src/ir/import-names.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* limitations under the License.
*/

#ifndef wasm_ir_import_name_h
#define wasm_ir_import_name_h
#ifndef wasm_ir_import_names_h
#define wasm_ir_import_names_h

#include <ostream>

Expand Down Expand Up @@ -47,4 +47,4 @@ template<> struct hash<wasm::ImportNames> {

} // namespace std

#endif // wasm_ir_import_name_h
#endif // wasm_ir_import_names_h
2 changes: 1 addition & 1 deletion src/ir/import-utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef wasm_ir_import_h
#define wasm_ir_import_h

#include "ir/import-name.h"
#include "ir/import-names.h"
#include "ir/runtime-table.h"
#include "literal.h"
#include "wasm.h"
Expand Down
2 changes: 1 addition & 1 deletion src/wasm.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <unordered_map>
#include <vector>

#include "ir/import-name.h"
#include "ir/import-names.h"
#include "literal.h"
#include "support/index.h"
#include "support/mixed_arena.h"
Expand Down
Loading