-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing #582
Testing #582
Commits on Jul 21, 2024
-
lvptrvec: fix compiler warnings
``` template-id not allowed for constructor/destructor in C++20 ```
Configuration menu - View commit details
-
Copy full SHA for a56f6c0 - Browse repository at this point
Copy the full SHA a56f6c0View commit details -
qimagescale: fix compiler warnings
About (possibly) unused functions.
Configuration menu - View commit details
-
Copy full SHA for c96a3f3 - Browse repository at this point
Copy the full SHA c96a3f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for b446873 - Browse repository at this point
Copy the full SHA b446873View commit details -
Configuration menu - View commit details
-
Copy full SHA for 76e6e24 - Browse repository at this point
Copy the full SHA 76e6e24View commit details -
Configuration menu - View commit details
-
Copy full SHA for c891656 - Browse repository at this point
Copy the full SHA c891656View commit details
Commits on Jul 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3913efd - Browse repository at this point
Copy the full SHA 3913efdView commit details -
lvstsheet: fix
parse_integer
prototype and associated compiler warn……ings The function actually parses an unsigned integer.
Configuration menu - View commit details
-
Copy full SHA for 405bb94 - Browse repository at this point
Copy the full SHA 405bb94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f5ae87 - Browse repository at this point
Copy the full SHA 7f5ae87View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9f5d57 - Browse repository at this point
Copy the full SHA b9f5d57View commit details -
Configuration menu - View commit details
-
Copy full SHA for d4f5a64 - Browse repository at this point
Copy the full SHA d4f5a64View commit details -
Configuration menu - View commit details
-
Copy full SHA for 97b1ddd - Browse repository at this point
Copy the full SHA 97b1dddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 01c9b19 - Browse repository at this point
Copy the full SHA 01c9b19View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2aeb52 - Browse repository at this point
Copy the full SHA d2aeb52View commit details -
Configuration menu - View commit details
-
Copy full SHA for f8d7ed7 - Browse repository at this point
Copy the full SHA f8d7ed7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 273050c - Browse repository at this point
Copy the full SHA 273050cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b9a02df - Browse repository at this point
Copy the full SHA b9a02dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a2e6e7 - Browse repository at this point
Copy the full SHA 3a2e6e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a35c257 - Browse repository at this point
Copy the full SHA a35c257View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9d7528 - Browse repository at this point
Copy the full SHA a9d7528View commit details -
Configuration menu - View commit details
-
Copy full SHA for 30033b6 - Browse repository at this point
Copy the full SHA 30033b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6deea77 - Browse repository at this point
Copy the full SHA 6deea77View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b69446 - Browse repository at this point
Copy the full SHA 6b69446View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5ccfb4 - Browse repository at this point
Copy the full SHA e5ccfb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 682a79b - Browse repository at this point
Copy the full SHA 682a79bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b313d56 - Browse repository at this point
Copy the full SHA b313d56View commit details -
Configuration menu - View commit details
-
Copy full SHA for aba10b1 - Browse repository at this point
Copy the full SHA aba10b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e99d4ab - Browse repository at this point
Copy the full SHA e99d4abView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa5fead - Browse repository at this point
Copy the full SHA fa5feadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d3e28b - Browse repository at this point
Copy the full SHA 8d3e28bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d3543a - Browse repository at this point
Copy the full SHA 8d3543aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45cecae - Browse repository at this point
Copy the full SHA 45cecaeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71715fa - Browse repository at this point
Copy the full SHA 71715faView commit details -
Configuration menu - View commit details
-
Copy full SHA for b908a75 - Browse repository at this point
Copy the full SHA b908a75View commit details -
``` warning: Rethrowing current exception with 'throw;', it seems there is no current exception to rethrow. If there is no current exception this calls std::terminate(). ```
Configuration menu - View commit details
-
Copy full SHA for 541eb11 - Browse repository at this point
Copy the full SHA 541eb11View commit details -
Comment out unused & problematic code: ``` crengine/include/lvref.h:395:16: warning: Reference to temporary returned. [returnTempReference] return LVRef(NULL); ^ crengine/include/lvref.h:396:15: warning: Reference to temporary returned. [returnTempReference] return LVRef( new T( *_ptr ) ); ```
Configuration menu - View commit details
-
Copy full SHA for f74dab9 - Browse repository at this point
Copy the full SHA f74dab9View commit details -
wordfmt: fix clang-tidy warning
``` warning: Value stored to 'pDiag' is never read [clang-analyzer-deadcode.DeadStores] ```
Configuration menu - View commit details
-
Copy full SHA for 3fca07a - Browse repository at this point
Copy the full SHA 3fca07aView commit details -
lvarray: fix cppcheck warnings
``` warning: Rethrowing current exception with 'throw;', it seems there is no current exception to rethrow. If there is no current exception this calls std::terminate(). ```
Configuration menu - View commit details
-
Copy full SHA for a67e93e - Browse repository at this point
Copy the full SHA a67e93eView commit details
Commits on Jul 23, 2024
-
- fix cppcheck & clang-tidy configurations to avoid parsing, processing, and/or spurious errors. - parallelize all checks to speed up linting (which is much slower now that cppcheck & clang-tidy can actually do their jobs). - always lint all files (we care about), instead of trying to determine what changed: even if a source file, say `crengine/src/lvtinydom.cpp`, was not changed in a PR, some change to included headers may break something that could be detected by one of the checks. - plus colors, groups and error annotations on Github Actions!
Configuration menu - View commit details
-
Copy full SHA for 5161264 - Browse repository at this point
Copy the full SHA 5161264View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0802454 - Browse repository at this point
Copy the full SHA 0802454View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5e9427 - Browse repository at this point
Copy the full SHA e5e9427View commit details -
Configuration menu - View commit details
-
Copy full SHA for 053460d - Browse repository at this point
Copy the full SHA 053460dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 83b8896 - Browse repository at this point
Copy the full SHA 83b8896View commit details -
Configuration menu - View commit details
-
Copy full SHA for 190aadc - Browse repository at this point
Copy the full SHA 190aadcView commit details -
Configuration menu - View commit details
-
Copy full SHA for a769e5f - Browse repository at this point
Copy the full SHA a769e5fView commit details -
ci: stop linting with nanosvg support enabled
- cppcheck does not like it - it does not match our default configuration on koreader anyway (where we use lunasvg)
Configuration menu - View commit details
-
Copy full SHA for 9498f02 - Browse repository at this point
Copy the full SHA 9498f02View commit details -
lvrefcache: tweak
LVCacheMap
implementationTo make cppcheck happy.
Configuration menu - View commit details
-
Copy full SHA for c93f7d0 - Browse repository at this point
Copy the full SHA c93f7d0View commit details -
textlang: get rid of
LANG_STARTS_WITH(…)
macro hackSimplify the code and make cppcheck happy.
Configuration menu - View commit details
-
Copy full SHA for f7df989 - Browse repository at this point
Copy the full SHA f7df989View commit details -
Configuration menu - View commit details
-
Copy full SHA for a8d7ee7 - Browse repository at this point
Copy the full SHA a8d7ee7View commit details -
comment out / don't compile concurrency code
- it's already stubbed anyway, stub it more! - I have seen at least one crash with the default stub (clang emulator) - cppcheck is not happy about it
Configuration menu - View commit details
-
Copy full SHA for e58bdd0 - Browse repository at this point
Copy the full SHA e58bdd0View commit details
Commits on Jul 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 37a2460 - Browse repository at this point
Copy the full SHA 37a2460View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c8ab9d - Browse repository at this point
Copy the full SHA 0c8ab9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1061e8 - Browse repository at this point
Copy the full SHA f1061e8View commit details