Skip to content

Commit 7d371b4

Browse files
committed
test on std::array in char again.
1 parent d5bc32c commit 7d371b4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
platform: [windows-latest, macos-latest, ubuntu-18.04]
17+
platform: [windows-latest, macos-latest] # , ubuntu-18.04
1818
python-version: ["3.x"]
1919

2020
steps:

src/timer.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ class Timing : public Timer
349349
std::size_t group_colors_level = std::numeric_limits<std::size_t>::max(),
350350
int precision = 4) const
351351
{
352-
static constexpr std::array<const char*, 7> const RC{redColor(), greenColor(), yellowColor(),
352+
static constexpr std::array<const char*, 7> RC{redColor(), greenColor(), yellowColor(),
353353
blueColor(), magentaColor(), cyanColor(),
354354
whiteColor()};
355355

@@ -394,7 +394,7 @@ class Timing : public Timer
394394
bool random_colors, bool bold, std::size_t group_colors_level,
395395
int precision) const
396396
{
397-
static constexpr std::array<const char*, 7> const RC{redColor(), greenColor(), yellowColor(),
397+
static constexpr std::array<const char*, 7> RC{redColor(), greenColor(), yellowColor(),
398398
blueColor(), magentaColor(), cyanColor(),
399399
whiteColor()};
400400

0 commit comments

Comments
 (0)