mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Corresponding code changes
This commit is contained in:
committed by
Lars Müller
parent
781c7a800f
commit
ae4cd1ebf1
18
src/catch.cpp
Normal file
18
src/catch.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
// Minetest
|
||||
// SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
|
||||
#include "catch.h"
|
||||
|
||||
#include "log.h"
|
||||
|
||||
namespace Catch {
|
||||
std::ostream& cout() {
|
||||
return rawstream;
|
||||
}
|
||||
std::ostream& clog() {
|
||||
return rawstream;
|
||||
}
|
||||
std::ostream& cerr() {
|
||||
return rawstream;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user