boost/crc.hpp uses non-standard conforming syntax
[ellert@ellert ~]$ g++ -pedantic -x c++
/usr/include/boost/crc.hpp
/usr/include/boost/crc.hpp:464: error: ISO C++ forbids
variable-size array `table_type'
[ellert@ellert ~]$ g++ --version
g++ (GCC) 3.4.4 20050721 (Red Hat 3.4.4-2)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying
conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
The header file uses a non-constant expression as the
size in an array declaration. This is not valid c++,
and the compiler rejects it when using the -pedantic flag.
Change History
(4)
Summary: |
boost/crc.hpp used non-standard conforming syntax → boost/crc.hpp uses non-standard conforming syntax
|
Component: |
None → crc
|
Severity: |
→ Problem
|
Resolution: |
None → fixed
|
Status: |
assigned → closed
|