Skip to content

Commit

Permalink
Merge pull request #216 from FelixPetriconi/develop
Browse files Browse the repository at this point in the history
Correct findings from Codacy check
  • Loading branch information
FelixPetriconi authored Dec 12, 2018
2 parents 450255a + 6a210c5 commit ab24bbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis/patches/patch_std_variant.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

HERE=`pwd`
HERE=$(pwd)

if [ ! -d /usr/lib/gcc/x86_64-linux-gnu/7.3.0/../../../../include/c++/7.3.0/ ]; then
echo "You must have a destination directory (gcc 7.3.0 includes) in order to patch!"
Expand Down
2 changes: 1 addition & 1 deletion test/channel_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ struct generator {
int _value = 0;
tuple<T&...> _queues;

generator(T&... q) : _queues(q...) {}
explicit generator(T&... q) : _queues(q...) {}

template <size_t... I>
void push_values(int value, index_sequence<I...>) {
Expand Down

0 comments on commit ab24bbd

Please sign in to comment.