refactor: use correct header include order

This commit is contained in:
Stanislav Angelovič
2024-01-09 23:31:47 +01:00
parent 1c72f1ce52
commit 4721060d76
23 changed files with 135 additions and 106 deletions

View File

@@ -24,10 +24,12 @@
* along with sdbus-c++. If not, see <http://www.gnu.org/licenses/>.
*/
#include <sdbus-c++/Error.h>
#include SDBUS_HEADER
#include "sdbus-c++/Error.h"
#include "ScopeGuard.h"
#include SDBUS_HEADER
namespace sdbus
{
sdbus::Error createError(int errNo, const std::string& customMsg)
@@ -40,4 +42,4 @@ namespace sdbus
std::string message(customMsg + " (" + sdbusError.message + ")");
return sdbus::Error(name, message);
}
}
} // namespace sdbus