mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-14 09:30:50 -05:00
Code cleanup branch (#618)
* Make height map fallback layer work again * Add documentation to joystick button bindings * Removed grouped property headers * Add new version number constant generated by CMake * Make Joystick deadzone work properly * Change the startup date on Earth to today * Fix key modifier handling * Add debugging indices for TreeNodeDebugging * Fix script schedule for OsirisRex * Do not open Mission schedule automatically * Upload default projection texture automatically * General code cleanup * Fix check_style_guide warnings * Remove .clang-format * MacOS compile fixes * Clang analyzer fixes
This commit is contained in:
@@ -27,8 +27,8 @@
|
||||
|
||||
#include <openspace/util/resourcesynchronization.h>
|
||||
|
||||
#include <openspace/documentation/documentation.h>
|
||||
#include <ghoul/misc/dictionary.h>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
namespace openspace {
|
||||
|
||||
@@ -36,8 +36,7 @@ class HttpSynchronization : public ResourceSynchronization {
|
||||
public:
|
||||
HttpSynchronization(const ghoul::Dictionary& dict,
|
||||
const std::string& synchronizationRoot,
|
||||
const std::vector<std::string>& synchronizationRepositories
|
||||
);
|
||||
const std::vector<std::string>& synchronizationRepositories);
|
||||
|
||||
virtual ~HttpSynchronization();
|
||||
|
||||
@@ -64,7 +63,7 @@ private:
|
||||
std::atomic_bool _shouldCancel = false;
|
||||
|
||||
std::string _identifier;
|
||||
int _version;
|
||||
int _version = -1;
|
||||
std::string _synchronizationRoot;
|
||||
std::vector<std::string> _synchronizationRepositories;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user