Skip to content

Commit 6a76ac7

Browse files
committed
Formatted Examples
Signed-off-by: ZigRazor <zigrazor@gmail.com>
1 parent 2df60c6 commit 6a76ac7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

example/example2/main.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
#include "LWBoundedQueue.hpp"
77
#include "QueueProcessor.hpp"
88

9-
void elabFunc(const int &value) { std::cout << "Dequeued:" << value << std::endl; }
9+
void elabFunc(const int &value) {
10+
std::cout << "Dequeued:" << value << std::endl;
11+
}
1012

1113
void exampleBoundedQueue() {
1214
std::cout << "Example BoundedQueue Processor" << std::endl;
@@ -97,7 +99,8 @@ void exampleBoundedQueueAsync() {
9799
// auto intBoundedQueue =
98100
// std::make_shared<DogBreeds::Labrador::LWBoundedQueue<int>>(10);
99101

100-
// DogBreeds::Labrador::AsyncQueueProcessor<int> qp(intBoundedQueue, elabFunc);
102+
// DogBreeds::Labrador::AsyncQueueProcessor<int> qp(intBoundedQueue,
103+
// elabFunc);
101104

102105
// std::shared_ptr<DogBreeds::Labrador::AbstractQueue<int>> queueWrapperInt =
103106
// intBoundedQueue;

0 commit comments

Comments
 (0)