Skip to content

Commit

Permalink
fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
snhobbs committed Jul 11, 2024
1 parent dd77f3d commit 8c86b88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/Modbus/DataStores/DataStore.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
#ifndef MODBUS_DATASTORE_H_
#define MODBUS_DATASTORE_H_
#include <cstdint>
using size_t = std::size_t;

namespace Modbus {
class DataStore {
protected:
static const std::size_t kByteSize = 8;
static const size_t kByteSize = 8;
static const size_t kAddressStart = 0x00;

public:
Expand Down

0 comments on commit 8c86b88

Please sign in to comment.