@@ -164,7 +164,7 @@ struct FCallArgsLong : FCallArgsBase {
164164 explicit FCallArgsLong (Flags flags, uint32_t numArgs, uint32_t numRets,
165165 std::unique_ptr<uint8_t []> inoutArgs,
166166 std::unique_ptr<uint8_t []> readonlyArgs,
167- BlockId asyncEagerTarget, LSString context)
167+ BlockId asyncEagerTarget, SString context)
168168 : FCallArgsBase(flags, numArgs, numRets)
169169 , inoutArgs(std::move(inoutArgs))
170170 , readonlyArgs(std::move(readonlyArgs))
@@ -173,7 +173,7 @@ struct FCallArgsLong : FCallArgsBase {
173173 explicit FCallArgsLong (FCallArgsBase base,
174174 std::unique_ptr<uint8_t []> inoutArgs,
175175 std::unique_ptr<uint8_t []> readonlyArgs,
176- BlockId asyncEagerTarget, LSString context)
176+ BlockId asyncEagerTarget, SString context)
177177 : FCallArgsBase(std::move(base))
178178 , inoutArgs(std::move(inoutArgs))
179179 , readonlyArgs(std::move(readonlyArgs))
@@ -321,15 +321,15 @@ struct FCallArgsLong : FCallArgsBase {
321321 std::unique_ptr<uint8_t []> inoutArgs;
322322 std::unique_ptr<uint8_t []> readonlyArgs;
323323 BlockId asyncEagerTarget;
324- LSString context;
324+ SString context;
325325
326326 template <typename SerDe>
327327 static copy_ptr<FCallArgsLong> makeForSerde (SerDe& sd) {
328328 static_assert (SerDe::deserializing);
329329
330330 auto base = sd.template make <FCallArgsBase>();
331331 BlockId asyncEagerTarget;
332- LSString context;
332+ SString context;
333333 sd (asyncEagerTarget)(context);
334334
335335 bool hasInout;
@@ -385,7 +385,7 @@ struct FCallArgs {
385385 std::unique_ptr<uint8_t []> inoutArgs,
386386 std::unique_ptr<uint8_t []> readonlyArgs,
387387 BlockId asyncEagerTarget,
388- LSString context)
388+ SString context)
389389 : l{flags, numArgs, numRets,
390390 std::move (inoutArgs), std::move (readonlyArgs),
391391 asyncEagerTarget, context} {}
@@ -515,7 +515,7 @@ struct FCallArgs {
515515 Flavor popFlavor (uint32_t i) const {
516516 return l->template popFlavor <nin,nobj>(i);
517517 }
518- LSString context () const { return l->context ; }
518+ SString context () const { return l->context ; }
519519
520520 template <typename SerDe> static FCallArgs makeForSerde (SerDe& sd) {
521521 static_assert (SerDe::deserializing);
@@ -540,7 +540,7 @@ using SwitchTab = CompactVector<BlockId>;
540540
541541// The final entry in the SSwitchTab is the default case, it will
542542// always have a nullptr for the string.
543- using SSwitchTabEnt = std::pair<LSString ,BlockId>;
543+ using SSwitchTabEnt = std::pair<SString ,BlockId>;
544544using SSwitchTab = CompactVector<SSwitchTabEnt>;
545545
546546// ////////////////////////////////////////////////////////////////////
0 commit comments