diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-03-12 15:20:59 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2020-03-12 15:25:38 -0700 |
commit | ab9f5d2067e1f8f22cb5009015ec059f4a1a7431 (patch) | |
tree | 29c6f69c06e70d4e9a26dd137d233ae776206d83 /test/ContainerScan.cxx | |
parent | a718086ffb989b7c56afc51eb3380f6568ef929e (diff) |
replace assert.h with cassert
The former was deprecated with C++14.
According to the C++11 and C++17 standards, both files are identical.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'test/ContainerScan.cxx')
-rw-r--r-- | test/ContainerScan.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ContainerScan.cxx b/test/ContainerScan.cxx index 45d4a0ed6..5a7cc41df 100644 --- a/test/ContainerScan.cxx +++ b/test/ContainerScan.cxx @@ -28,9 +28,9 @@ #include "util/PrintException.hxx" #include "util/UriExtract.hxx" +#include <cassert> #include <stdexcept> -#include <assert.h> #include <unistd.h> #include <stdlib.h> #include <stdio.h> |