mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-27 22:22:46 -05:00 
			
		
		
		
	Merge pull request #1090 from lioncash/ctor-assign
core: Delete System copy/move constructors and assignment operators
This commit is contained in:
		| @@ -40,6 +40,12 @@ namespace Core { | ||||
|  | ||||
| class System { | ||||
| public: | ||||
|     System(const System&) = delete; | ||||
|     System& operator=(const System&) = delete; | ||||
|  | ||||
|     System(System&&) = delete; | ||||
|     System& operator=(System&&) = delete; | ||||
|  | ||||
|     ~System(); | ||||
|  | ||||
|     /** | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 bunnei
					bunnei