P4C
The P4 Compiler
Loading...
Searching...
No Matches
big_int.h
1/*
2 * SPDX-FileCopyrightText: 2013 Barefoot Networks, Inc.
3 * Copyright 2013-present Barefoot Networks, Inc.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef LIB_BIG_INT_H_
9#define LIB_BIG_INT_H_
10
11#include <boost/multiprecision/cpp_int.hpp>
12
13namespace P4 {
14
15using big_int = boost::multiprecision::cpp_int;
16
17} // namespace P4
18
19#endif /* LIB_BIG_INT_H_ */
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:13