Skip to content

Commit b3db82d

Browse files
committed
style: change types cases
1 parent 5bf3e33 commit b3db82d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

include/plugify/callback.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@ namespace plugify {
165165
*/
166166
class ParametersSpan {
167167
public:
168-
using slot_type = uint64_t;
168+
using SlotType = uint64_t;
169169

170170
/**
171171
* @brief Constructs a ParametersSpan.
172172
* @param data Pointer to the slot data.
173173
* @param count Number of slots.
174174
*/
175-
ParametersSpan(slot_type* data, size_t count) noexcept
175+
ParametersSpan(SlotType* data, size_t count) noexcept
176176
: _data(data)
177177
, _count(count) {
178178
}
@@ -206,7 +206,7 @@ namespace plugify {
206206
}
207207

208208
private:
209-
slot_type* _data;
209+
SlotType* _data;
210210
[[maybe_unused]] size_t _count;
211211
};
212212

@@ -220,14 +220,14 @@ namespace plugify {
220220
*/
221221
class ReturnSlot {
222222
public:
223-
using type = void;
223+
using SlotType = void;
224224

225225
/**
226226
* @brief Construct from byte storage
227227
* @param data Pointer to aligned byte storage
228228
* @param size Size in bytes
229229
*/
230-
explicit ReturnSlot(type* data, size_t size) noexcept
230+
explicit ReturnSlot(SlotType* data, size_t size) noexcept
231231
: _data(data)
232232
, _size(size) {
233233
}
@@ -272,7 +272,7 @@ namespace plugify {
272272
}
273273

274274
private:
275-
type* _data;
275+
SlotType* _data;
276276
[[maybe_unused]] size_t _size;
277277
};
278278
} // namespace plugify

0 commit comments

Comments
 (0)