diff options
| author | 2021-05-30 20:37:54 +0100 | |
|---|---|---|
| committer | 2021-05-30 20:37:54 +0100 | |
| commit | 02340285c564a7e82105137192d46d554a6fce3a (patch) | |
| tree | 696d1a6249841de62c3fed70310c2a347fc66732 /src/fileutils.cpp | |
| parent | Add a workaround for a bug in GitHub Actions. (diff) | |
Added -Wshorten-64-to-32 and fixed all warnings.
Diffstat (limited to 'src/fileutils.cpp')
| -rw-r--r-- | src/fileutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileutils.cpp b/src/fileutils.cpp index 4e173acb5..fa600f306 100644 --- a/src/fileutils.cpp +++ b/src/fileutils.cpp @@ -26,7 +26,7 @@ # include <dirent.h> #endif -FilePosition::FilePosition(const std::string& Name, unsigned int Line, unsigned int Column) +FilePosition::FilePosition(const std::string& Name, unsigned long Line, unsigned long Column) : name(Name) , line(Line) , column(Column) |
