Commit 801f51ae authored by Marc Vef's avatar Marc Vef Committed by Alberto Miranda
Browse files

Use generic error category instead of system category

parent 27839240
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ struct ChunkStat {
class ChunkStorageException : public std::system_error {
public:
    ChunkStorageException(const int err_code, const std::string& s) : std::system_error(err_code,
                                                                                        std::system_category(), s) {};
                                                                                        std::generic_category(), s) {};
};

class ChunkStorage {