-
Consider the following example:
```
$ cat foo.h
#include
template
class Vector final : private std::vector
{
public:
Vector() = default;
};
```
```
$ cat main.cpp
#includ…
-
I don't know if it is a false positive.
```
=================================================================
==26868==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x1080d51bf868 at …
-
This is similar to #5211, but with a different test case. I've simplified it down from a couple of hours to segfaulting in about five seconds; it is possible that it can be simplified even further, bu…
sesse updated
1 month ago
-
Running on a Raspberry Pi 4 (arm64 or aarch64 depending how you squint) and attempting to test prior to evaluation
My environment is:
```
uname -a
Linux Pi1 6.6.51+rpt-rpi-2712 #1 SMP PREEMPT De…
-
### Zig Version
0.14.0-dev.2034+56996a280
### Steps to Reproduce and Observed Behavior
```zig
const std = @import("std");
test "example" {
const gpa = std.testing.allocator;
var list:…
-
Minimal reproducer:
```
INTEGER :: i
j=2
!$OMP PARALLEL default(private)
!$OMP critical(k2)
j=200
!$OMP END critical(k2)
!$OMP END PARALLEL
END
```
`flang -fopenmp file.f90`
```
flang-…
tblah updated
3 weeks ago
-
I often use pool allocators in my programs, which allow for many small allocations but ignore calls to free these allocations, because they will all be freed at once after it is known that the allocat…
-
### Zig Version
0.14.0-dev.719+f21928657
### Steps to Reproduce and Observed Behavior
Create a file `bug.zig` and paste the following code:
```zig
const std = @import("std");
pub fn main() !vo…
-
I am getting `error.OutOfMemory` when using any allocators with your setup.
![error.OutOfMemory](https://github.com/user-attachments/assets/3ae11060-4c64-4641-882a-dfe1398cf774)
Please, confirm …
-
(you don't have to strictly follow this form)
## Question
版本:0.4.2
执行sql
`insert into clientpoint.dwd_a_device_record_list
select topic,
project,
language,
ttid,
userId as user_id,…