Skip to content

Commit 4e15d0f

Browse files
committed
Remove too new filename macro
1 parent 077a0eb commit 4e15d0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quant.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ namespace quant {
196196
const round_mode mode
197197
) -> void {
198198
if (in.size() != out.size()) [[unlikely]] {
199-
std::cerr << __FILE_NAME__ << ":" << __LINE__ << " input and output spans must have the same length, but " << in.size() << " != " << out.size() << std::endl;
199+
std::cerr << __FILE__ << ":" << __LINE__ << " input and output spans must have the same length, but " << in.size() << " != " << out.size() << std::endl;
200200
std::abort();
201201
}
202202
const op_info info {

0 commit comments

Comments
 (0)