summaryrefslogtreecommitdiff
path: root/test/sized_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/sized_test.cc')
-rw-r--r--test/sized_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sized_test.cc b/test/sized_test.cc
index fe52b7a41..d98459409 100644
--- a/test/sized_test.cc
+++ b/test/sized_test.cc
@@ -38,7 +38,7 @@ void print(C &cont)
{
std::cout << std::endl;
std::cout << "Printing " << typeid(cont).name() << std::endl;
- while(!cont.empty()) {
+ while (!cont.empty()) {
std::cout << cont.front() << " ";
cont.pop();
}
@@ -52,11 +52,11 @@ int main(void)
sized<std::queue<int>, sized_drop_policy<std::queue<int> > >
drop_queue(5);
- for(int i = 0; i < 10; ++i) {
+ for (int i = 0; i < 10; ++i) {
error_queue.push(i);
}
- for(int i = 0; i < 3; ++i) {
+ for (int i = 0; i < 3; ++i) {
drop_queue.push(i);
}