summaryrefslogtreecommitdiff
path: root/tests/glibmm_bool_vector
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-02-26 10:46:24 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-02-26 10:46:40 +0100
commit780b77a044ff7e5edda67d59088a33e06596c77b (patch)
tree9086c76e2c2d27559a7b87316e6af02665733685 /tests/glibmm_bool_vector
parent249bdd539ab05aab98bc417f579524b4e988faef (diff)
downloadglibmm-780b77a044ff7e5edda67d59088a33e06596c77b.tar.gz
Run clang-format on tests.
Diffstat (limited to 'tests/glibmm_bool_vector')
-rw-r--r--tests/glibmm_bool_vector/main.cc20
1 files changed, 11 insertions, 9 deletions
diff --git a/tests/glibmm_bool_vector/main.cc b/tests/glibmm_bool_vector/main.cc
index 1e7c32ae..79b286c4 100644
--- a/tests/glibmm_bool_vector/main.cc
+++ b/tests/glibmm_bool_vector/main.cc
@@ -21,10 +21,10 @@
#include <glibmm.h>
-//Use this line if you want debug output:
-//std::ostream& ostr = std::cout;
+// Use this line if you want debug output:
+// std::ostream& ostr = std::cout;
-//This seems nicer and more useful than putting an ifdef around the use of ostr:
+// This seems nicer and more useful than putting an ifdef around the use of ostr:
std::stringstream debug;
std::ostream& ostr = debug;
@@ -35,7 +35,7 @@ setup_rand()
{
static bool setup(false);
- if(!setup)
+ if (!setup)
{
setup = true;
std::srand(std::time(nullptr));
@@ -48,7 +48,7 @@ c_get_bool_array()
gboolean* array(static_cast<gboolean*>(g_malloc((magic_limit + 1) * sizeof(gboolean))));
setup_rand();
- for(unsigned int iter(0); iter < magic_limit; ++iter)
+ for (unsigned int iter(0); iter < magic_limit; ++iter)
{
array[iter] = std::rand() % 2 ? TRUE : FALSE;
}
@@ -59,16 +59,17 @@ c_get_bool_array()
void
c_print_bool_array(gboolean* array)
{
- for(unsigned int iter(0); iter < magic_limit; ++iter)
+ for (unsigned int iter(0); iter < magic_limit; ++iter)
{
- ostr << iter << ": " <<(array[iter] ? "TRUE" : "FALSE") << "\n";
+ ostr << iter << ": " << (array[iter] ? "TRUE" : "FALSE") << "\n";
}
}
std::vector<bool>
cxx_get_bool_array()
{
- return Glib::ArrayHandler<bool>::array_to_vector(c_get_bool_array(), magic_limit, Glib::OWNERSHIP_SHALLOW);
+ return Glib::ArrayHandler<bool>::array_to_vector(
+ c_get_bool_array(), magic_limit, Glib::OWNERSHIP_SHALLOW);
}
void
@@ -77,7 +78,8 @@ cxx_print_bool_array(const std::vector<bool>& v)
c_print_bool_array(const_cast<gboolean*>(Glib::ArrayHandler<bool>::vector_to_array(v).data()));
}
-int main(int, char**)
+int
+main(int, char**)
{
Glib::init();