Author: n2h9
Date: 2025-12-16T21:09:07-08:00
New Revision: 99553bcdef959cd9fa694e4c8abf1ad849df5fad

URL: 
https://github.com/llvm/llvm-project/commit/99553bcdef959cd9fa694e4c8abf1ad849df5fad
DIFF: 
https://github.com/llvm/llvm-project/commit/99553bcdef959cd9fa694e4c8abf1ad849df5fad.diff

LOG: [lldb] [docs] [sbapi]: fix lldb-forward header name (#172578)

This pr fixes the header file name from `lldb_forward.h` to
`lldb-forward.h` in `sbapi.rst`.

Here is the header file in question:
[lldb-forward.h](https://github.com/llvm/llvm-project/blob/main/lldb/include/lldb/lldb-forward.h).

Signed-off-by: Nikita B <[email protected]>

Added: 
    

Modified: 
    lldb/docs/resources/sbapi.rst

Removed: 
    


################################################################################
diff  --git a/lldb/docs/resources/sbapi.rst b/lldb/docs/resources/sbapi.rst
index 8c15e371a5012..9beca69f05562 100644
--- a/lldb/docs/resources/sbapi.rst
+++ b/lldb/docs/resources/sbapi.rst
@@ -24,9 +24,9 @@ or remove ivars without breaking binary compatibility. In 
some cases, the SB
 class is a thin wrapper around an internal lldb_private object. In that case,
 the class can have a single ivar, which is either a pointer, shared_ptr or
 unique_ptr to the object in the lldb_private API. All the lldb_private classes
-that get used this way are declared as opaque classes in lldb_forward.h, which
+that get used this way are declared as opaque classes in lldb-forward.h, which
 is included in SBDefines.h. So if you need an SB class to wrap an lldb_private
-class that isn't in lldb_forward.h, add it there rather than making a direct
+class that isn't in lldb-forward.h, add it there rather than making a direct
 opaque declaration in the SB classes .h file.
 
 If the SB Class needs some state of its own, as well as the backing object,


        
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to