Remco Vermeulen

Results 19 issues of Remco Vermeulen

**Describe the bug** The alert of a message containing a placeholder without location information does not render the text. **Version** The CodeQL and VS Code version in which the bug...

bug
good first issue
VSCode

**Is your feature request related to a problem? Please describe.** When developing QL tests it can be difficult to triage the initial results shown in the CodeQL tests output, because...

enhancement
VSCode

**Describe the bug** Changing the settings of the CodeQL extension while running a query results in the restart of the query server. This restart successfully stops the running query, but...

bug
VSCode

Add support for the languages Ruby and Swift based on the language codes used in the queries.

documentation

### Affected rules - cpp/autosar/signed-char-and-unsigned-char-type-shall-only-be-used-for-the-storage-and-use-of-numeric-values ### Description The implementation incorrectly implements the identification of numeric values. Characters will have type `char` while numeric values will be promoted to `int` or...

false positive/false negative

### Affected rules - cpp/autosar/non-trivial-non-template-function-defined-inside-class-definition - cpp/autosar/trivial-or-template-function-defined-outside-class-definition ### Description See [discussion](https://forum.misra.org.uk/archive/index.php?thread-1588.html) for the two interpretations and the intend of MISRA. This requires removing of `trivial-or-template-function-defined-outside-class-definition` and solely look at the...

Difficulty-Medium
Impact-High
user-report
false positive/false negative

### Affected rules - cpp/autosar/function-missing-constexpr ### Description The query alerts on a move constructor declaration outside the class body. Per `[dcl.constexpr]` paragraph 1, a `constexpr` shall only be applied to...

user-report
false positive/false negative

### Affected rules - cpp/autosar/variable-width-integer-types-used ### Description Template instantiations store the template argument after type definitions have been resolved. This results in argument types with variable width integer types even...

Difficulty-Medium
Impact-Medium
user-report
false positive/false negative

### Affected rules - cpp/autosar/undocumented-user-defined-type ### Description The query incorrect flags the function `MyFunction`. ### Example ```cpp /// @brief MyFunction. /// @tparam MyType template parameter. /// @param Parameter. /// @return...

Difficulty-Medium
Impact-High
user-report
false positive/false negative
Phase III

## Description This PR adds a workflow based on Nix to build a CodeQL CLI with support for QL so we can analyze our QL files for issues we want...