libfxd 0.2.dev
A fixed-point library for C++.
Loading...
Searching...
No Matches
error.hpp
Go to the documentation of this file.
1/*
2 * libfxd - a fixed-point library for C++
3 *
4 * Copyright 2023 Daniel K. O.
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef LIBFXD_ERROR_HPP
9#define LIBFXD_ERROR_HPP
10
11namespace fxd {
12
14 enum class error {
18 };
19
20}
21
22#endif
This is the namespace where the entire library is defined.
Definition: casting.hpp:19
error
Error values reported by fxd::expect function.
Definition: error.hpp:14