forked from mirrors/gecko-dev
		
	 c523c8faa9
			
		
	
	
		c523c8faa9
		
	
	
	
	
		
			
			MozReview-Commit-ID: CUjfeBeOdsk --HG-- extra : rebase_source : 633b900794cba24030c2b93d4d070d1447fff39b
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			653 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			653 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #ifndef LoadLibraryUsageChecker_h__
 | |
| #define LoadLibraryUsageChecker_h__
 | |
| 
 | |
| #include "plugin.h"
 | |
| 
 | |
| class LoadLibraryUsageChecker : public BaseCheck {
 | |
| public:
 | |
|   LoadLibraryUsageChecker(StringRef CheckName, ContextType *Context = nullptr)
 | |
|       : BaseCheck(CheckName, Context) {}
 | |
|   void registerMatchers(MatchFinder *AstMatcher) override;
 | |
|   void check(const MatchFinder::MatchResult &Result) override;
 | |
| };
 | |
| 
 | |
| #endif // !defined(LoadLibraryUsageChecker_h__)
 |