µOS++ IIIe Reference 7.0.0
The third edition of µOS++, a POSIX inspired open source framework, written in C++
Loading...
Searching...
No Matches
common.cpp
Go to the documentation of this file.
1/*
2 * This file is part of the µOS++ project (https://micro-os-plus.github.io/).
3 * Copyright (c) 2016-2025 Liviu Ionescu. All rights reserved.
4 * Copyright (c) 2013-2014 ARM Ltd.
5 *
6 * Permission to use, copy, modify, and/or distribute this software
7 * for any purpose is hereby granted, under the terms of the MIT license.
8 *
9 * If a copy of the license was not distributed with this file, it can
10 * be obtained from https://opensource.org/licenses/mit.
11 */
12
13/*
14 * The code is inspired by ARM CMSIS Driver_USART.h file, v2.02,
15 * and tries to remain functionally close to the CMSIS specifications.
16 */
17
19#include <cassert>
20
21// ----------------------------------------------------------------------------
22
23#if defined(__clang__)
24#pragma clang diagnostic ignored "-Wc++98-compat"
25#endif
26
27// ----------------------------------------------------------------------------
28
29namespace os
30{
31 namespace driver
32 {
33 // ------------------------------------------------------------------------
34
35 Base::~Base () noexcept
36 {
37 }
38
39 // ------------------------------------------------------------------------
40 } /* namespace driver */
41} /* namespace os */
42
43// ----------------------------------------------------------------------------
virtual ~Base() noexcept
Definition common.cpp:35
System namespace.