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