Cosmetics: Add missing backslashes inside #defines
In all other multi-line comments inside #define
there's a backslash
at the end of the line just in case compiler strips comments after
running preprocessor, and also to shut up some code highlighting
editors (that's how I discovered this bug in the first place: #define
took precedence over multi-line comment and lack of backshlash caused
incorrect code highlighting). Now it's more consistent with the rest
of the code. Quick grep didn't find any other affected files.
Merge request reports
Activity
- Resolved by Ziemowit Zabawa
As I understand C-preprocessor standard
\
only really needed at the last line of multiline comment because it is fully replaced by 1 space symbol. So this patch is only cosmetics/consistency fix.I found 1 more line where
\
need to be added in such case: common/x86/predict-c.c:65.Also change commit message to only have caption (imho it doesn't need such long description or at least make it short).
added 1 commit
- dc2fcb13 - Cosmetics: Add missing backslashes inside #defines
- Resolved by Anton Mitrofanov
Ok @BugMaster, your issues above should be fixed, but now pipelines are failing despite me compiling on my local machine (from the
fix_backslash
branch ofc) without any issues at all!The result of
./configure
andmake
on my machine (WSL2 Ubuntu on Win10) is in configure.log and make.log, respectively.Edited by Ziemowit Zabawa
added 5 commits
-
dc2fcb13...88fab191 - 4 commits from branch
videolan:master
- e0fee7b2 - Cosmetics: Add missing backslashes inside #defines
-
dc2fcb13...88fab191 - 4 commits from branch
enabled an automatic merge when the pipeline for e0fee7b2 succeeds