You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/quant.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -196,7 +196,7 @@ namespace quant {
196
196
const round_mode mode
197
197
) -> void {
198
198
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;
0 commit comments