mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 14:10: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
				
			
		|  | @ -22,7 +22,11 @@ public: | |||
|       // NOLINTEND(cppcoreguidelines-avoid-magic-numbers)
 | ||||
|    } | ||||
| 
 | ||||
|    ~UiSettingsImpl() {} | ||||
|    ~UiSettingsImpl()                                 = default; | ||||
|    UiSettingsImpl(const UiSettingsImpl&)             = delete; | ||||
|    UiSettingsImpl& operator=(const UiSettingsImpl&)  = delete; | ||||
|    UiSettingsImpl(const UiSettingsImpl&&)            = delete; | ||||
|    UiSettingsImpl& operator=(const UiSettingsImpl&&) = delete; | ||||
| 
 | ||||
|    SettingsVariable<bool> level2ProductsExpanded_ {"level2_products_expanded"}; | ||||
|    SettingsVariable<bool> level2SettingsExpanded_ {"level2_settings_expanded"}; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 AdenKoperczak
						AdenKoperczak