commit c6aee1c65531578d6128e06839dde168ede1d988
Author: Jean-Marc Lasgouttes <[email protected]>
Date:   Mon Jul 14 12:19:47 2025 +0200

    Avoid clang warning
    
    Fixes:
    
    error: destructor called on non-final 'lyx::support::ForkedCall' that has 
virtual
    functions but non-virtual destructor 
[-Werror,-Wdelete-non-abstract-non-virtual-dtor]
---
 src/support/ForkedCalls.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/support/ForkedCalls.h b/src/support/ForkedCalls.h
index ac7b45e08d..84aeac9679 100644
--- a/src/support/ForkedCalls.h
+++ b/src/support/ForkedCalls.h
@@ -149,7 +149,7 @@ private:
  * function.
  */
 
-class ForkedCall : public ForkedProcess {
+class ForkedCall final : public ForkedProcess {
 public:
        ///
        ForkedCall(std::string const & path = empty_string(),
-- 
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to