Skip to content

Commit

Permalink
fix gcc build: add missing <vector> include
Browse files Browse the repository at this point in the history
  • Loading branch information
jothepro committed Dec 13, 2021
1 parent 9545eca commit 69cc617
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/include/CloudSync/Resource.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <string>
#include <utility>
#include <filesystem>
#include <vector>

namespace CloudSync {
class Resource {
Expand Down
2 changes: 1 addition & 1 deletion test/macros/basic_auth_mock.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
#define BASIC_AUTH_MOCK(usernamevalue, passwordvalue) \
SHARED_PTR_MOCK(credentials, CloudSync::credentials::BasicCredentialsImpl); \
When(Method(credentialsMock, username)).AlwaysReturn(usernamevalue); \
When(Method(credentialsMock, password)).AlwaysReturn(passwordvalue)
When(Method(credentialsMock, password)).AlwaysReturn(passwordvalue)

0 comments on commit 69cc617

Please sign in to comment.