Verified Commit 3b730a3b authored by Alberto Miranda's avatar Alberto Miranda ♨️
Browse files

Fix syntax error in GCC 4.9

parent 1674b427
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ class OpenFile {
protected:
    FileType type_;
    std::string path_;
    std::array<bool, static_cast<int>(OpenFile_flags::flag_count)> flags_ = {false};
    std::array<bool, static_cast<int>(OpenFile_flags::flag_count)> flags_ = {{false}};
    unsigned long pos_;
    std::mutex pos_mutex_;
    std::mutex flag_mutex_;