Make written bytes observable
This commit is contained in:
@@ -23,7 +23,7 @@ namespace OpenVulkano
|
||||
|
||||
Observable(const T& initValue) : object(initValue) {}
|
||||
|
||||
Observable(T&& initValue) : object(std::forward(initValue)) {}
|
||||
Observable(T&& initValue) : object(std::forward<T>(initValue)) {}
|
||||
|
||||
//TODO make this somehow only work for none string types to prevent issues?
|
||||
/*template<typename = std::enable_if_t<std::is_default_constructible_v<T>>>
|
||||
|
||||
Reference in New Issue
Block a user