diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 15:18:27 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2018-06-20 09:51:42 +0000 |
| commit | 954a0083d9ce7065564c18c9788743eb0cf371f2 (patch) | |
| tree | 3f77797181a9e89dafd9c5f00f6da3dc477d244b /src/deptool.cpp | |
| parent | Replace typedef struct with struct in POD type declarations. (diff) | |
| download | inkscape-954a0083d9ce7065564c18c9788743eb0cf371f2.tar.gz inkscape-954a0083d9ce7065564c18c9788743eb0cf371f2.zip | |
Replace typedef enum with enum in POD type declarations.
Diffstat (limited to 'src/deptool.cpp')
| -rw-r--r-- | src/deptool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deptool.cpp b/src/deptool.cpp index 7233c5544..a2b2bb9d2 100644 --- a/src/deptool.cpp +++ b/src/deptool.cpp @@ -90,13 +90,13 @@ class FileRec { public: - typedef enum + enum FileType { UNKNOWN, CFILE, HFILE, OFILE - } FileType; + }; /** * Constructor |
