diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-17 19:40:31 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2018-06-18 12:27:01 +0000 |
| commit | 7fe91fdccab9e61c4dbc12c1c83d2f06e3f266f4 (patch) | |
| tree | ab4f11dc730c386ce76fcbb9e219b233504955e7 /src/extension/internal/odf.cpp | |
| parent | Run clang-tidy’s modernize-use-equals-default pass. (diff) | |
| download | inkscape-7fe91fdccab9e61c4dbc12c1c83d2f06e3f266f4.tar.gz inkscape-7fe91fdccab9e61c4dbc12c1c83d2f06e3f266f4.zip | |
Run clang-tidy’s modernize-deprecated-headers pass.
This renames most C <*.h> includes into C++ <c*> includes.
Diffstat (limited to 'src/extension/internal/odf.cpp')
| -rw-r--r-- | src/extension/internal/odf.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extension/internal/odf.cpp b/src/extension/internal/odf.cpp index 2c25ea1f4..18092873e 100644 --- a/src/extension/internal/odf.cpp +++ b/src/extension/internal/odf.cpp @@ -44,10 +44,10 @@ #include "odf.h" //# System includes -#include <stdio.h> -#include <time.h> +#include <cstdio> +#include <ctime> #include <vector> -#include <math.h> +#include <cmath> //# Inkscape includes #include "clear-n_.h" @@ -101,7 +101,7 @@ typedef Inkscape::IO::StringOutputStream StringOutputStream; //######################################################################## //# C L A S S SingularValueDecomposition //######################################################################## -#include <math.h> +#include <cmath> class SVDMatrix { |
