lib/curl/Error: rename header to HttpStatusError.hxx

This commit is contained in:
Max Kellermann 2022-11-29 06:08:04 +01:00
parent f62d61f088
commit 846d7dc317
3 changed files with 3 additions and 6 deletions

View File

@ -22,7 +22,7 @@
#include "config.h"
#ifdef ENABLE_CURL
#include "lib/curl/Error.hxx"
#include "lib/curl/HttpStatusError.hxx"
#endif
#ifdef ENABLE_NFS

View File

@ -18,7 +18,7 @@
*/
#include "CurlInputPlugin.hxx"
#include "lib/curl/Error.hxx"
#include "lib/curl/HttpStatusError.hxx"
#include "lib/curl/Global.hxx"
#include "lib/curl/Init.hxx"
#include "lib/curl/Request.hxx"

View File

@ -17,8 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef CURL_ERROR_HXX
#define CURL_ERROR_HXX
#pragma once
#include <stdexcept>
@ -38,5 +37,3 @@ public:
return status;
}
};
#endif