mirror of
https://github.com/minetest/minetest.git
synced 2025-03-06 20:48:40 +01:00
18 lines
258 B
C++
18 lines
258 B
C++
// 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;
|
|
}
|
|
}
|