summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthegeorg <[email protected]>2025-08-22 09:54:05 +0300
committerthegeorg <[email protected]>2025-08-22 10:11:15 +0300
commitcd599f2d5b4c6593a9770488c4affb53f46e42f6 (patch)
treef070fee0757647753c83e034313af337ed664774
parentb49ea71f549a0fbb199857d27c96983f7dcdd4c1 (diff)
Add forward-declaration of TBlob to util/generic/fwd.h
While the class itself it defined in `util/memory/blob.h`, it seems better to reuse an existing `fwd.h` rather than creating a new one. commit_hash:3e373ab68ced34c709ee12e3ce5b544376ac8417
-rw-r--r--util/generic/fwd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/generic/fwd.h b/util/generic/fwd.h
index 906203d60e2..d07deeb37d6 100644
--- a/util/generic/fwd.h
+++ b/util/generic/fwd.h
@@ -160,3 +160,5 @@ class TArrayRef;
template <class T>
using TConstArrayRef = TArrayRef<const T>;
+
+class TBlob;