@@ -529,8 +529,7 @@ class V3Error final {
529
529
// Internals for v3error()/v3fatal() macros only
530
530
// Error end takes the string stream to output, be careful to seek() as needed
531
531
static std::ostringstream& v3errorPrep (V3ErrorCode code) VL_ACQUIRE(s().m_mutex);
532
- static std::ostringstream& v3errorPrepFileLine (V3ErrorCode code, const char * file, int line,
533
- bool mtDisabledCodeUnit)
532
+ static std::ostringstream& v3errorPrepFileLine (V3ErrorCode code, const char * file, int line)
534
533
VL_ACQUIRE(s().m_mutex);
535
534
static std::ostringstream& v3errorStr () VL_REQUIRES(s().m_mutex);
536
535
// static, but often overridden in classes.
@@ -570,9 +569,7 @@ void v3errorEndFatal(std::ostringstream& sstr)
570
569
// Use this instead of fatal() to mention the source code line.
571
570
#define v3fatalSrc (msg ) \
572
571
v3errorEndFatal (v3errorBuildMessage( \
573
- V3Error::v3errorPrepFileLine (V3ErrorCode::EC_FATALSRC, __FILE__, __LINE__, \
574
- VL_MT_DISABLED_CODE_UNIT_DEFINED), \
575
- msg))
572
+ V3Error::v3errorPrepFileLine (V3ErrorCode::EC_FATALSRC, __FILE__, __LINE__), msg))
576
573
// Use this when normal v3fatal is called in static method that overrides fileline.
577
574
#define v3fatalStatic (msg ) \
578
575
::v3errorEndFatal (v3errorBuildMessage(V3Error::v3errorPrep(V3ErrorCode::EC_FATAL), msg))
0 commit comments