Browse Source

MSVC catches access control oddities that GCC misses

default_compile_flags
vector-of-bool 4 years ago
parent
commit
e8b8e5cddd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dds/remote/remote.hpp

+ 1
- 1
src/dds/remote/remote.hpp View File

@@ -16,12 +16,12 @@ class remote_repository {
std::string _name;
neo::url _base_url;

public:
remote_repository(std::string name, neo::url url)
: _name(std::move(name))
, _base_url(std::move(url)) {}
remote_repository() = default;

public:
static remote_repository connect(std::string_view url);

void store(neo::sqlite3::database_ref);

Loading…
Cancel
Save