Skip to content

Commit 8114db1

Browse files
committed
Fix signature of WindowsPlatform constructor
1 parent 298a8b1 commit 8114db1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/src/windows_platform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "pcap.h"
2828
using namespace std;
2929

30-
WindowsPlatform::WindowsPlatform(vector<string>)
30+
WindowsPlatform::WindowsPlatform(string)
3131
{
3232
// FIXME
3333
}

backend/src/windows_platform.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ using namespace std;
3434
class WindowsPlatform : public AbstractPlatform
3535
{
3636
public:
37-
WindowsPlatform(vector<string>);
37+
WindowsPlatform(string);
3838
bool is_root();
3939
bool check_permissions();
4040
void fix_permissions();

0 commit comments

Comments
 (0)