make message text default constructable
This commit is contained in:
		@@ -67,6 +67,7 @@ namespace Message::Components {
 | 
			
		||||
 | 
			
		||||
	struct MessageText {
 | 
			
		||||
		std::string text;
 | 
			
		||||
		MessageText(void) = default;
 | 
			
		||||
		MessageText(const std::string& view) : text(view) {}
 | 
			
		||||
		MessageText(const std::string_view& view) : text(view) {}
 | 
			
		||||
	};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user