diff options
| author | Trung Le <trung.le@ruby-journal.com> | 2020-05-07 11:27:57 +1000 | 
|---|---|---|
| committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2020-05-09 10:47:48 -0700 | 
| commit | f299962b0fa6c35e4074168abdb452cf49f6826c (patch) | |
| tree | 2c3caae067cdbcfade949441d4d5ce6ea50cf5d2 | |
| parent | c02550b9dba7cd218956dcdfd94bffb7e57348bf (diff) | |
Fix enum declaration
| -rw-r--r-- | includes/benchmark.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/benchmark.h b/includes/benchmark.h index ab77efa4..77e6bbbf 100644 --- a/includes/benchmark.h +++ b/includes/benchmark.h @@ -8,7 +8,7 @@  extern ProgramParameters params; -enum { +enum BenchmarkEntries {      BENCHMARK_BLOWFISH_SINGLE,      BENCHMARK_BLOWFISH_THREADS,      BENCHMARK_BLOWFISH_CORES, @@ -26,7 +26,7 @@ enum {      BENCHMARK_MEMORY_QUAD,      BENCHMARK_GUI,      BENCHMARK_N_ENTRIES -} BenchmarkEntries; +};  void benchmark_bfish_single(void);  void benchmark_bfish_threads(void);  | 
