cgen: add `small` to c_reserved
							parent
							
								
									cde0cbd5ad
								
							
						
					
					
						commit
						24bc2ae406
					
				| 
						 | 
				
			
			@ -16,12 +16,13 @@ import sync.pool
 | 
			
		|||
const (
 | 
			
		||||
	// NB: some of the words in c_reserved, are not reserved in C,
 | 
			
		||||
	// but are in C++, or have special meaning in V, thus need escaping too.
 | 
			
		||||
	// `small` should not be needed, but see: https://stackoverflow.com/questions/5874215/what-is-rpcndr-h
 | 
			
		||||
	c_reserved     = ['array', 'auto', 'break', 'calloc', 'case', 'char', 'class', 'const',
 | 
			
		||||
		'continue', 'default', 'delete', 'do', 'double', 'else', 'enum', 'error', 'exit', 'export',
 | 
			
		||||
		'extern', 'float', 'for', 'free', 'goto', 'if', 'inline', 'int', 'link', 'long', 'malloc',
 | 
			
		||||
		'namespace', 'new', 'panic', 'register', 'restrict', 'return', 'short', 'signed', 'sizeof',
 | 
			
		||||
		'static', 'string', 'struct', 'switch', 'typedef', 'typename', 'union', 'unix', 'unsigned',
 | 
			
		||||
		'void', 'volatile', 'while', 'template', 'stdout', 'stdin', 'stderr']
 | 
			
		||||
		'void', 'volatile', 'while', 'template', 'small', 'stdout', 'stdin', 'stderr']
 | 
			
		||||
	c_reserved_map = string_array_to_map(c_reserved)
 | 
			
		||||
	// same order as in token.Kind
 | 
			
		||||
	cmp_str        = ['eq', 'ne', 'gt', 'lt', 'ge', 'le']
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue