Nicolas Busser
Nicolas Busser
Hello, I'm facing an issue when trying to run the aligner from the [release 1.0.1](https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner/releases/tag/v1.0.1). ``` Traceback (most recent call last): File "site-packages/PyInstaller/loader/rthooks/pyi_rth_pkgres.py", line 11, in File "/home/michael/miniconda3/envs/aligner/lib/python3.6/site-packages/PyInstaller/loader/pyimod03_importers.py", line 627,...
**Describe the bug** I want to use an AWS layer to store all my `node_modules` dependencies. Thus, following the documentation of esbuild serverless plugin, I set `exclude` option to `'*'`...
### Affected rules - A4-7-1 ### Description Changing a class/struct's member value with an arithmetic expression triggers a A4-7-1 warning, despite using an appropriate type guard (example function `false_positive`). I...
### Affected rules - M0-1-9 ### Description When using template type, some irrelevant `M0-1-9` warnings are triggered ### Example ```cpp template void false_positive() { T t; std::cin >> t; //...
### Affected rules - A15-1-3 ### Description When defining a function template which throws an exception, `A15-1-3` warning is triggered, meaning that the exception is not unique. ### Example ```cpp...
### Affected rules - A5-16-1 ### Description CodeQL triggers `A5-16-1` on a plain ternary expression. ### Example ```cpp const auto smallestSet = (setA.size() < setB.size() ? setA : setB); ```
### Affected rules - M0-1-2 - A3-1-5 - A4-5-1 - M0-1-1 ### Description Using lambda expression trigger various side effects alerts. ### Example #### A3-1-5 ```cpp const auto lambda =...
### Affected rules - M5-0-8 - M5-0-9 ### Description Return value of `static_cast` seems to be treated as a `cvalue` interferring with several MISRA rules: #### M-0-8 When upcasting variable...
### Affected rules - A7-1-3 ### Description For some reason, `A7-1-3` is triggered on basic varibales created from `static_cast` ### Example ```cpp void false_positive() { std::uint8_t u8{0}; auto const u32...