summaryrefslogtreecommitdiff
path: root/src/statwrapper.h
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2020-07-15 14:42:42 -0700
committerTor Aamodt <[email protected]>2020-07-15 14:42:42 -0700
commit5e8e84976b63186ce4682e3dbb1bea84542558a9 (patch)
tree2610cd196eba67032ff664c3bae192eb0b434d79 /src/statwrapper.h
parent089446c9898b050f36e854eebff5dbd33332dce8 (diff)
parent53e63b9b5684388ad102848275efe524d68aab01 (diff)
Merge branch 'dev'
Diffstat (limited to 'src/statwrapper.h')
-rw-r--r--src/statwrapper.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/statwrapper.h b/src/statwrapper.h
index 65c2ab9..4c00447 100644
--- a/src/statwrapper.h
+++ b/src/statwrapper.h
@@ -1,12 +1,12 @@
#ifndef STAT_WRAPER_H
#define STAT_WRAPER_H
-class Stats* StatCreate (const char * name, double bin_size, int num_bins) ;
-void StatClear(void * st);
-void StatAddSample (void * st, int val);
-double StatAverage(void * st) ;
-double StatMax(void * st) ;
-double StatMin(void * st) ;
-void StatDisp (void * st);
+class Stats* StatCreate(const char* name, double bin_size, int num_bins);
+void StatClear(void* st);
+void StatAddSample(void* st, int val);
+double StatAverage(void* st);
+double StatMax(void* st);
+double StatMin(void* st);
+void StatDisp(void* st);
#endif