We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0646802 commit 474a75fCopy full SHA for 474a75f
fileLister.h
@@ -12,7 +12,7 @@ struct T_FILE
12
T_FILE(std::string p_name, bool is_symlink, unsigned long int p_size = 0)
13
: m_name(std::move(p_name)),
14
is_symlink(is_symlink),
15
- m_ext(File_utils::getLowercaseFileExtension(p_name)),
+ m_ext(File_utils::getLowercaseFileExtension(m_name)),
16
m_size(p_size) {}
17
T_FILE(const T_FILE &p_source) = default;
18
T_FILE &operator=(const T_FILE &p_source) = default;
0 commit comments