Dean Serenevy

Results 9 comments of Dean Serenevy

Hello, thanks for considering. I admit, it is not strictly necessary, but the logic for rollback gets ugly without something that does a rollback on Drop. In particular, using the...

I do notice that I should have added more tests than just the documentation test. If this is something you'd like, I'm happy to write some tests for it.

I think the fix in #8415 is/was incorrect. The author points to the [GL4 documentation](https://registry.khronos.org/OpenGL-Refpages/gl4/html/glShaderSource.xhtml), which indeed shows the function definition, ``` C void glShaderSource( GLuint shader, GLsizei count, const...

Sorry, I missed that kivy can compile using either GLES or GL, so it appears as though the glShaderSource definitions need to conditionally choose between `const GLchar**` and `const GLchar*...

I think that my original problem was an `END{}` block used by a GUI library being called prematurely. However, this example shows what can happen: use strict; use warnings; use...

Also, `eval { capturex }` with a failure is the only situation that causes an extra evaluation of END blocks. Other functions (capture, system, systemx) and successful capturex all behave...

I am encountering this too, reproducible via. ## src/main.rs ```rust use sqlx::mysql::MySqlPoolOptions; use sqlx::FromRow as _; #[derive(Debug, Clone, PartialEq, Eq)] #[derive(sqlx::FromRow)] pub struct Test { id: i32, name: String, }...

Regardless of whether the name matches the type, if there is only a single field with a match, I don't think this lint should trigger. Example, ```rust struct Foo {...

I actually do use multiple deadlines and it works fine (shows up in my org schedule) ``` * Do something interesting today DEADLINE: DEADLINE: DEADLINE: ```