mirror of https://github.com/CGAL/cgal
fix a compilation error detected locally by CTest
This commit is contained in:
parent
78f98041c6
commit
66c1b9b9e0
|
|
@ -1,10 +1,10 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <boost/cstdint.hpp>
|
#include <cstdint>
|
||||||
#include <CGAL/assertions.h>
|
#include <CGAL/assertions.h>
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
std::cout << "Verifying the sizes of boost::[u]int{8,16,32,64}_t"
|
std::cout << "Verifying the sizes of std::[u]int{8,16,32,64}_t"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
static_assert(sizeof(std::int8_t) == 1);
|
static_assert(sizeof(std::int8_t) == 1);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue