mirror of
				https://gitlab.com/OpenMW/openmw.git
				synced 2025-11-03 20:54:02 -05:00 
			
		
		
		
	fixed another case issue in remote member access
This commit is contained in:
		
							parent
							
								
									c03bd8ebb6
								
							
						
					
					
						commit
						87b51e47a9
					
				@ -9,7 +9,6 @@
 | 
			
		||||
#include "generator.hpp"
 | 
			
		||||
#include "errorhandler.hpp"
 | 
			
		||||
 | 
			
		||||
#include <iostream>
 | 
			
		||||
namespace Compiler
 | 
			
		||||
{
 | 
			
		||||
    bool ControlParser::parseIfBody (int keyword, const TokenLoc& loc, Scanner& scanner)
 | 
			
		||||
 | 
			
		||||
@ -7,6 +7,8 @@
 | 
			
		||||
#include <ostream>
 | 
			
		||||
#include <iterator>
 | 
			
		||||
 | 
			
		||||
#include <components/misc/stringops.hpp>
 | 
			
		||||
 | 
			
		||||
namespace Compiler
 | 
			
		||||
{
 | 
			
		||||
    const std::vector<std::string>& Locals::get (char type) const
 | 
			
		||||
@ -97,7 +99,7 @@ namespace Compiler
 | 
			
		||||
 | 
			
		||||
    void Locals::declare (char type, const std::string& name)
 | 
			
		||||
    {
 | 
			
		||||
        get (type).push_back (name);
 | 
			
		||||
        get (type).push_back (Misc::StringUtils::lowerCase (name));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void Locals::clear()
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user