Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/prov/tpm2/tpm2_session.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class BOTAN_UNSTABLE_API SessionHandle final {

~SessionHandle();

// NOLINTNEXTLINE(*-explicit-conversions) FIXME
// NOLINTNEXTLINE(*-explicit-conversions) Intentional: SessionHandle is a wrapper around ESYS_TR for C API interop
[[nodiscard]] operator ESYS_TR() && noexcept;

private:
Expand Down Expand Up @@ -165,7 +165,7 @@ class BOTAN_PUBLIC_API(3, 6) Session {
*/
class SessionBundle {
public:
// NOLINTNEXTLINE(*-explicit-conversions) FIXME
// NOLINTNEXTLINE(*-explicit-conversions) Intentional: Allows convenient single-session usage without explicit SessionBundle construction
SessionBundle(std::shared_ptr<Session> s1 = nullptr,
std::shared_ptr<Session> s2 = nullptr,
std::shared_ptr<Session> s3 = nullptr) :
Expand Down
Loading