Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
machlog/races.hpp: Drop weird/wrong class keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Dec 17, 2023
1 parent 97447e3 commit 0f0fec0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/libdev/machlog/races.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ class MachLogRaces
bool operator==(const MachLogRaces&) const;

// Useful typedefs
using ActorIdMap = class UtlBoundedIdPMap<class MachActor>;
using ActorIdMap = UtlBoundedIdPMap<class MachActor>;

static size_t map_MachPhysRace_to_size_t(MachPhys::Race);
// POST( result < MachPhys::N_RACES );
Expand Down
5 changes: 2 additions & 3 deletions src/libdev/xin/formatter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ class basic_formatter
{

public:
using string = class std::basic_string<T, CharTraits, Allocator>;

using stringstream = class std::basic_ostringstream<T, CharTraits, Allocator>;
using string = std::basic_string<T, CharTraits, Allocator>;
using stringstream = std::basic_ostringstream<T, CharTraits, Allocator>;

public:
basic_formatter() { }
Expand Down

0 comments on commit 0f0fec0

Please sign in to comment.