mirror of
https://github.com/nasa/fprime.git
synced 2025-12-13 03:01:27 -06:00
* Format Svc and add to CI * Fix comlogger include * fix assert UTs * Fix static analysis warning * formatting
18 lines
454 B
C++
18 lines
454 B
C++
// ======================================================================
|
|
// AssertFatalAdapter.hpp
|
|
// Standardization header for AssertFatalAdapter
|
|
// ======================================================================
|
|
|
|
#ifndef Svc_AssertFatalAdapter_HPP
|
|
#define Svc_AssertFatalAdapter_HPP
|
|
|
|
#include "Svc/AssertFatalAdapter/AssertFatalAdapterComponentImpl.hpp"
|
|
|
|
namespace Svc {
|
|
|
|
typedef AssertFatalAdapterComponentImpl AssertFatalAdapter;
|
|
|
|
}
|
|
|
|
#endif
|