Skip to content

Commit

Permalink
lib/pkgxx/mutex_guard.hxx: Simply use std::mutex, don't have an alias
Browse files Browse the repository at this point in the history
  • Loading branch information
depressed-pho committed Jul 23, 2023
1 parent d52516e commit a3fb90d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/pkgxx/mutex_guard.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ namespace pkgxx {
}

private:
using mutex_t = std::mutex;

mutable mutex_t _mtx;
mutable std::mutex _mtx;
T _val;
};
}

0 comments on commit a3fb90d

Please sign in to comment.