Skip to content

Commit

Permalink
Applied Formatting Changes During GitHub Build
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Build authored and GitHub Build committed Nov 16, 2024
1 parent 8f32dbc commit 9b8081f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/core/rtos/Semaphore.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef EVT_RTOS_SEMAPHORE_
#define EVT_RTOS_SEMAPHORE_

#include <core/rtos/Initializable.hpp>
#include <core/rtos/Enums.hpp>
#include <core/rtos/Initializable.hpp>

namespace core::rtos {

Expand Down
2 changes: 1 addition & 1 deletion include/core/rtos/Thread.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace core::rtos {
* @tparam T what type of data the thread's entry function will take. Should be at most 32 bits. (so generally should be
* a pointer)
*/
template <typename T, typename = typename std::enable_if<sizeof(T) <= 4>::type>
template<typename T, typename = typename std::enable_if<sizeof(T) <= 4>::type>
class Thread : public Initializable {
public:
/**
Expand Down
2 changes: 1 addition & 1 deletion src/core/rtos/Queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TXError Queue::init(BytePoolBase& pool) {
return error;
}
// create the queue only if the memory allocation succeeds
return static_cast<TXError>(tx_queue_create(&txQueue, name, (uint32_t)messageSize, poolPointer, queueSize));
return static_cast<TXError>(tx_queue_create(&txQueue, name, (uint32_t) messageSize, poolPointer, queueSize));
}

TXError Queue::flush() {
Expand Down

0 comments on commit 9b8081f

Please sign in to comment.