mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 07:50:05 +00:00 
			
		
		
		
	Use default destructor, and add move/copy operators to settings impls
This commit is contained in:
		
							parent
							
								
									f84a86a3a3
								
							
						
					
					
						commit
						05c05fec5c
					
				
					 17 changed files with 90 additions and 20 deletions
				
			
		|  | @ -11,9 +11,13 @@ template<class Container> | |||
| class SettingsContainer<Container>::Impl | ||||
| { | ||||
| public: | ||||
|    explicit Impl() {} | ||||
|    explicit Impl() = default; | ||||
| 
 | ||||
|    ~Impl() {} | ||||
|    ~Impl()                       = default; | ||||
|    Impl(const Impl&)             = delete; | ||||
|    Impl& operator=(const Impl&)  = delete; | ||||
|    Impl(const Impl&&)            = delete; | ||||
|    Impl& operator=(const Impl&&) = delete; | ||||
| 
 | ||||
|    T                             elementDefault_ {}; | ||||
|    std::optional<T>              elementMinimum_ {}; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 AdenKoperczak
						AdenKoperczak