From fd752d36cb8b8b77c19239f9f087477fc9208762 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Wed, 27 Aug 2025 13:48:10 +0200 Subject: [PATCH] C++: Add missing QLDoc --- cpp/ql/lib/semmle/code/cpp/PchFile.qll | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cpp/ql/lib/semmle/code/cpp/PchFile.qll b/cpp/ql/lib/semmle/code/cpp/PchFile.qll index fbb372b30e5..787ad947b55 100644 --- a/cpp/ql/lib/semmle/code/cpp/PchFile.qll +++ b/cpp/ql/lib/semmle/code/cpp/PchFile.qll @@ -9,6 +9,9 @@ import semmle.code.cpp.File * A precompiled header (PCH) file created during the build process. */ class PchFile extends @pch { + /** + * Gets a textual representation of this element. + */ string toString() { result = "PCH for " + this.getHeaderFile() } /**