aboutsummaryrefslogtreecommitdiff
path: root/libs/kstd/gdb/__init__.py
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-06-15 10:48:52 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-06-15 10:48:52 +0200
commitb382324b23c5870d69cc83a9ffe1e7dafbc27754 (patch)
tree7295c53b1f11cf82b1b4f5b2553748f98719d9b2 /libs/kstd/gdb/__init__.py
parent93521bf359b4ce70923ed2a47fdd13ef93129f74 (diff)
parentfb0a56d575e8a28822c9bf9e426601acf09384ac (diff)
downloadkernel-b382324b23c5870d69cc83a9ffe1e7dafbc27754.tar.xz
kernel-b382324b23c5870d69cc83a9ffe1e7dafbc27754.zip
Merge branch 'fmorgner/develop/kstd-string-rewrite' into 'develop'
Implement a fully-featured SSO enabled string See merge request teachos/kernel!50
Diffstat (limited to 'libs/kstd/gdb/__init__.py')
-rw-r--r--libs/kstd/gdb/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/kstd/gdb/__init__.py b/libs/kstd/gdb/__init__.py
index c5d1e539..4c4b3415 100644
--- a/libs/kstd/gdb/__init__.py
+++ b/libs/kstd/gdb/__init__.py
@@ -12,7 +12,7 @@ from .smart_pointers import (
def build_pretty_printers():
pp = gdb.printing.RegexpCollectionPrettyPrinter("kstd")
pp.add_printer("vector", "^kstd::vector<.*>$", KstdVectorPrinter)
- pp.add_printer("string", "^kstd::string$", KstdStringPrinter)
+ pp.add_printer("string", "^kstd::basic_string<.*>$", KstdStringPrinter)
pp.add_printer("unique_ptr", "^kstd::unique_ptr<.*>$", KstdUniquePtrPrinter)
pp.add_printer("shared_ptr", "^kstd::shared_ptr<.*>$", KstdSharedPtrPrinter)
pp.add_printer("observer_ptr", "^kstd::observer_ptr<.*>$", KstdObserverPtrPrinter)