add two extra noreturn that clang picked up
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
a5b136c420
commit
84f71cec2c
|
@ -68,6 +68,7 @@ InputStream::CheapSeeking() const noexcept
|
|||
return IsSeekable() && !ExpensiveSeeking(uri.c_str());
|
||||
}
|
||||
|
||||
//[[noreturn]]
|
||||
void
|
||||
InputStream::Seek(std::unique_lock<Mutex> &, [[maybe_unused]] offset_type new_offset)
|
||||
{
|
||||
|
|
|
@ -51,6 +51,7 @@ public:
|
|||
|
||||
protected:
|
||||
/* virtual methods from CurlResponseParser */
|
||||
[[noreturn]]
|
||||
void OnEnd() override;
|
||||
|
||||
public:
|
||||
|
|
|
@ -55,6 +55,7 @@ public:
|
|||
|
||||
protected:
|
||||
/* virtual methods from CurlResponseParser */
|
||||
[[noreturn]]
|
||||
void OnEnd() override;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue