Apply 'make format'

This commit is contained in:
github action 2025-03-05 07:51:11 +00:00
parent 2499c71d12
commit 88f6463b5a
2 changed files with 4 additions and 2 deletions

View File

@ -101,7 +101,8 @@ void VerilatedSaif::open(const char* filename) VL_MT_SAFE_EXCLUDES(m_mutex) {
if (isOpen()) return;
m_filename = filename; // "" is ok, as someone may overload open
m_filep = ::open(m_filename.c_str(), O_CREAT | O_WRONLY | O_TRUNC | O_LARGEFILE | O_NONBLOCK | O_CLOEXEC, 0666);
m_filep = ::open(m_filename.c_str(),
O_CREAT | O_WRONLY | O_TRUNC | O_LARGEFILE | O_NONBLOCK | O_CLOEXEC, 0666);
m_isOpen = true;
initializeSaifFileContents();

View File

@ -351,7 +351,8 @@ public:
/// just as if this object was deleted and reconstructed.
virtual void open(const char* filename) VL_MT_SAFE { m_sptrace.open(filename); }
void rolloverSize(size_t size) VL_MT_SAFE { /* noop */ }
void rolloverSize(size_t size) VL_MT_SAFE { /* noop */
}
/// Close dump
void close() VL_MT_SAFE {