undercores to dashes

This commit is contained in:
Jared Van Bortel 2025-02-26 17:14:12 -05:00
parent 86de26ead2
commit e872f1db2d
8 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@
#include <QCoro/QCoroTask> // IWYU pragma: keep #include <QCoro/QCoroTask> // IWYU pragma: keep
#include <fmt/base.h> #include <fmt/base.h>
#include <gpt4all-backend/formatters.h> // IWYU pragma: keep #include <gpt4all-backend/formatters.h> // IWYU pragma: keep
#include <gpt4all-backend/ollama_client.h> #include <gpt4all-backend/ollama-client.h>
#include <QCoreApplication> #include <QCoreApplication>
#include <QTimer> #include <QTimer>

View File

@ -13,6 +13,6 @@ add_subdirectory(src)
target_sources(gpt4all-backend PUBLIC target_sources(gpt4all-backend PUBLIC
FILE_SET public_headers TYPE HEADERS BASE_DIRS include FILES FILE_SET public_headers TYPE HEADERS BASE_DIRS include FILES
include/gpt4all-backend/formatters.h include/gpt4all-backend/formatters.h
include/gpt4all-backend/ollama_client.h include/gpt4all-backend/ollama-client.h
include/gpt4all-backend/ollama_responses.h include/gpt4all-backend/ollama-responses.h
) )

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "ollama_responses.h" #include "ollama-responses.h"
#include <QCoro/QCoroTask> // IWYU pragma: keep #include <QCoro/QCoroTask> // IWYU pragma: keep

View File

@ -1,8 +1,8 @@
set(TARGET gpt4all-backend) set(TARGET gpt4all-backend)
add_library(${TARGET} STATIC add_library(${TARGET} STATIC
json_helpers.cpp json-helpers.cpp
ollama_client.cpp ollama-client.cpp
) )
target_compile_features(${TARGET} PUBLIC cxx_std_23) target_compile_features(${TARGET} PUBLIC cxx_std_23)
gpt4all_add_warning_options(${TARGET}) gpt4all_add_warning_options(${TARGET})

View File

@ -1,4 +1,4 @@
#include "json_helpers.h" #include "json-helpers.h"
#include <boost/json.hpp> #include <boost/json.hpp>

View File

@ -1,6 +1,6 @@
#include "ollama_client.h" #include "ollama-client.h"
#include "json_helpers.h" #include "json-helpers.h"
#include <QCoro/QCoroIODevice> // IWYU pragma: keep #include <QCoro/QCoroIODevice> // IWYU pragma: keep
#include <QCoro/QCoroNetworkReply> // IWYU pragma: keep #include <QCoro/QCoroNetworkReply> // IWYU pragma: keep