Apply 'make format'

This commit is contained in:
github action 2022-02-27 07:53:05 +00:00
parent 43a84d7ad8
commit 47069dfe52

View File

@ -43,7 +43,8 @@ class V3HierBlockPlan;
/// end-of-stope.
// Object must be named, or it will not persist until end-of-scope.
// Constructor needs () or GCC 4.8 false warning.
#define VL_RESTORER(var) const VRestorer<typename std::decay<decltype(var)>::type> restorer_##var(var);
#define VL_RESTORER(var) \
const VRestorer<typename std::decay<decltype(var)>::type> restorer_##var(var);
// Object used by VL_RESTORER. This object must be an auto variable, not
// allocated on the heap or otherwise.