Skip to content

Commit

Permalink
Try to fix Windows failure
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 23, 2019
1 parent b02a8c5 commit 2ca64c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/src/arrow/io/memory_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void TestSlowInputStream() {

util::string_view view;
ASSERT_OK(slow->Peek(4, &view));
ASSERT_EQ(view, "ghij");
ASSERT_EQ(view, util::string_view("ghij"));

ASSERT_OK(slow->Close());
ASSERT_TRUE(slow->closed());
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/io/slow.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Status;

namespace io {

class LatencyGenerator {
class ARROW_EXPORT LatencyGenerator {
public:
virtual ~LatencyGenerator();

Expand Down

0 comments on commit 2ca64c5

Please sign in to comment.