From 7bce15b065c2c305f39168c2b9ae0d28fa5ee801 Mon Sep 17 00:00:00 2001 From: github action Date: Wed, 3 Feb 2021 22:39:03 +0000 Subject: [PATCH] Apply clang-format --- test_regress/t/TestVpi.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test_regress/t/TestVpi.h b/test_regress/t/TestVpi.h index 9ecc18125..155d924f1 100644 --- a/test_regress/t/TestVpi.h +++ b/test_regress/t/TestVpi.h @@ -11,7 +11,7 @@ #include "vpi_user.h" - // Avoid C++11 in this file as not all simulators allow it +// Avoid C++11 in this file as not all simulators allow it //====================================================================== @@ -21,7 +21,9 @@ class TestVpiHandle { bool m_freeit; // No = as no C++11 public: - TestVpiHandle() : m_handle(NULL), m_freeit(true) {} + TestVpiHandle() + : m_handle(NULL) + , m_freeit(true) {} TestVpiHandle(vpiHandle h) : m_handle(h) {} ~TestVpiHandle() { release(); }