10

class XXX
{
public:
std::vector<std::wstring> m_Files; // Recently used files

why not just use:

class XXX
{
public:
std::vector<std::wstring> m_RecentlyUsedFiles;

FFS

Comments
  • 7
    Wait for the plot twist where it's actually *not* recently used files, and the comment was wrong 😁
  • 0
    Take this scum outta here
  • 0
    Because that's C++ and as everyone knows sane and legible variable names are illegal in C++

    (at least it looks like c++)
  • 0
    The worst thing here is that the field is public so nothing is enforcing that it's the MRU files anyway...
Add Comment