Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
"Fix" test compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
grorp committed Jul 9, 2023
1 parent a6221ea commit 64b45b6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/AutomatedTest/main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
#include <cassert>
#include <iostream>
#include <string>
#include <irrlicht.h>
#include "exampleHelper.h"

// usually provided by Minetest
std::wstring utf8_to_wide(const std::string &input) {
assert(false);
return L"false";
}

// usually provided by Minetest
std::string wide_to_utf8(const std::wstring &input) {
assert(false);
return "false";
}

using namespace irr;

static IrrlichtDevice *device = nullptr;
Expand Down

0 comments on commit 64b45b6

Please sign in to comment.