Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
Fix clang build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Jun 26, 2017
1 parent f17ed62 commit 8a68de6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tools/fuzzTesting/fuzzHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <test/tools/libtesteth/TestOutputHelper.h>

using namespace dev;
const static std::array<eth::Instruction, 14> invalidOpcodes{
const static std::array<eth::Instruction, 14> invalidOpcodes{{
eth::Instruction::INVALID,
eth::Instruction::PUSHC,
eth::Instruction::JUMPC,
Expand All @@ -42,7 +42,7 @@ const static std::array<eth::Instruction, 14> invalidOpcodes{
eth::Instruction::RETURNSUB,
eth::Instruction::PUTLOCAL,
eth::Instruction::GETLOCAL
};
}};

namespace dev
{
Expand Down

0 comments on commit 8a68de6

Please sign in to comment.