fix a compilation error detected locally by CTest

This commit is contained in:
Laurent Rineau 2024-04-19 16:46:12 +02:00
parent 78f98041c6
commit 66c1b9b9e0
1 changed files with 2 additions and 2 deletions

View File

@ -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);