본문 바로가기
개발

Helix QAC 문제 수정하기

by I!i어★떤☆날★에Ι!i 2022. 8. 17.
반응형

 

HELIX-QAC.QAC.0911 Inserted '%1s' token in an attempt to continue parsing.

Inserted ';' token in an attempt to continue parsing

=> 구분이 이상하다. 구조체 변수를 사용한다면 구조체가 정의되지 않았다. 구조체가 정의된 파일을 정확히 include 하고 있는지 확인하자. 

The distinction is strange. If a 'struct' variable is used, the 'struct' is not defined. Check that the structure is exactly including the defined file.

 

 

HELIX-QAC.QAC.0818 Cannot find '%s' - Perhaps the appropriate search path was not given ?

=> 정확한 파일을 찾을 수 없다. 헤더 파일명이 정확한지 확인하자. 특히 대소문자가 정확한지 확인해 보자.

The correct file could not be found. Check that the header file name is correct. In particular, make sure the case is correct.

 

HELIX-QAC.QAC.0684 Too many initializers.

=> 초기화 방법이 잘못되었다. 특히 배열 또는 구조체 초기화 시 자주 발생할 수 있다. 초기화 문법을 정확히 숙지하고 작성하자. 초기화 변수가 부족하거나, 너무 많을 수 있다.

The initialization method is incorrect. In particular, it can occur frequently when initializing a 'struct'. Let's write and understand the initialization syntax correctly.

 

 

HELIX-QAC.QAC.0616 Illegal combination of type specifiers or storage class specifiers.

=> 구조체 또는 class의 조합이 이상하다. 구조체를 다시 한번 확인해 보자.

The combination of struct or class is strange. Let's check the 'struct' again.

 

 

HELIX-QAC.QAC.0602 The identifier '%s' is reserved for use by the library.

=> 언더바(_)로 시작하는 구문은 예약어이다. 언더바(_)로 시작하는 변수나 define이 있다면 수정하자.

A phrase starting with an underscore (_) is a reserved word. If there is a variable or define that starts with an underscore (_), modify the variable or define statement so that it does not start with an underscore.

 

HELIX-QAC.QAC.0436 Left operand of '.' must be a 'struct' or 'union' object.

=> 구조체가 아닌 변수에 점(.) 연산자가 사용되었다. 사용한 변수가 구조체가 맞는지 확인하자.

The dot (.) operator is used for variables that are not ‘struct’ or 'union’ object. Check that the variable used is a ‘struct’ or 'union’ object.

 

 

HELIX QAC Help : https://analyst.phyzdev.net/documentation/help/

반응형

댓글