mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 00:30:05 +00:00 
			
		
		
		
	Fix GLEW clang-tidy issues
This commit is contained in:
		
							parent
							
								
									331b2d855f
								
							
						
					
					
						commit
						a6f8547455
					
				
					 15 changed files with 176 additions and 95 deletions
				
			
		|  | @ -25,9 +25,8 @@ static const auto        logger_    = scwx::util::Logger::Create(logPrefix_); | |||
| class PlacefileText::Impl | ||||
| { | ||||
| public: | ||||
|    explicit Impl(const std::shared_ptr<GlContext>& context, | ||||
|                  const std::string&                placefileName) : | ||||
|        context_ {context}, placefileName_ {placefileName} | ||||
|    explicit Impl(const std::string& placefileName) : | ||||
|        placefileName_ {placefileName} | ||||
|    { | ||||
|    } | ||||
| 
 | ||||
|  | @ -43,8 +42,6 @@ public: | |||
|                    float                                         x, | ||||
|                    float                                         y); | ||||
| 
 | ||||
|    std::shared_ptr<GlContext> context_; | ||||
| 
 | ||||
|    std::string placefileName_; | ||||
| 
 | ||||
|    bool thresholded_ {false}; | ||||
|  | @ -70,9 +67,8 @@ public: | |||
|    std::vector<std::shared_ptr<types::ImGuiFont>> newFonts_ {}; | ||||
| }; | ||||
| 
 | ||||
| PlacefileText::PlacefileText(const std::shared_ptr<GlContext>& context, | ||||
|                              const std::string&                placefileName) : | ||||
|     DrawItem(), p(std::make_unique<Impl>(context, placefileName)) | ||||
| PlacefileText::PlacefileText(const std::string& placefileName) : | ||||
|     DrawItem(), p(std::make_unique<Impl>(placefileName)) | ||||
| { | ||||
| } | ||||
| PlacefileText::~PlacefileText() = default; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat