Re: patch: make a const cast explicit

2025-07-01 Thread Jean-Marc Lasgouttes
Le 01/07/2025 à 10:54, Scott Kostyshak a écrit : Thanks, JMarc! Please commit. (and also thanks for the explanation). Done. JMarc -- lyx-devel mailing list lyx-devel@lists.lyx.org https://lists.lyx.org/mailman/listinfo/lyx-devel

Re: patch: make a const cast explicit

2025-07-01 Thread Scott Kostyshak
On Tue, Jul 01, 2025 at 10:37:02AM +0200, Jean-Marc Lasgouttes wrote: > Le 30/06/2025 à 23:40, Scott Kostyshak a écrit : > > Clang gives the following warning: > > > > src/frontends/qt/GuiAlert.cpp:55:33: warning: cast from 'const char *' to > > 'char *' drops const qualifier [-Wcast-qual] > >

Re: patch: make a const cast explicit

2025-07-01 Thread Jean-Marc Lasgouttes
Le 30/06/2025 à 23:40, Scott Kostyshak a écrit : Clang gives the following warning: src/frontends/qt/GuiAlert.cpp:55:33: warning: cast from 'const char *' to 'char *' drops const qualifier [-Wcast-qual] 55 | QApplication app(argc, (char**)argv); |