Skip to content

Commit

Permalink
Correct findings from Coverty check
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixPetriconi committed Dec 12, 2018
1 parent 450255a commit 6a210c5
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 6a210c5

Please sign in to comment.