Skip to content

Commit

Permalink
COMP: Use C++ headers over C header
Browse files Browse the repository at this point in the history
Some headers from C library were deprecated in C++ and are no longer
welcome in C++ codebases. Some have no effect in C++. For more details
refer to the C++ 14 Standard [depr.c.headers] section.

This patch replaces C standard library headers with their C++
alternatives and removes redundant ones.
  • Loading branch information
hjmjohnson committed Jan 22, 2018
1 parent b543ccb commit 520cc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/itkIteratorTests.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "itkImage.h"
#include "itkVector.h"
#include "itkRLEImage.h"
#include <time.h>
#include <ctime>

int itkIteratorTests(int, char* [] )
{
Expand Down

0 comments on commit 520cc0f

Please sign in to comment.