Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Rename action_id type for GCC - develop #8932

Merged
merged 1 commit into from
Apr 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libraries/chain/include/eosio/chain/transaction_context.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ namespace eosio { namespace chain {
* to record on-going execution id/index of all actions executed
* by a given transaction.
*/
class action_id {
class action_id_type {
public:
action_id(): id(0) {}
action_id_type(): id(0) {}

inline void increment() { id++; }
inline uint32_t current() const { return id; }
Expand Down Expand Up @@ -181,7 +181,7 @@ namespace eosio { namespace chain {
transaction_checktime_timer transaction_timer;

/// kept to track ids of action_traces push via this transaction
action_id action_id;
action_id_type action_id;

private:
bool is_initialized = false;
Expand Down