Skip to content
Snippets Groups Projects
Commit 85bc73d7 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

STY: Style changes.

parent 2981cd26
No related branches found
No related tags found
No related merge requests found
Pipeline #12622 passed
Pipeline: caosdb-cppinttest

#12623

    ......@@ -110,7 +110,8 @@ inline auto get_env_fallback(const char *key, const char *fallback) -> const cha
    * @brief Return the value of an environment variable or - if undefined - the
    * fallback value.
    */
    inline auto get_env_fallback(const std::string &key, const std::string &fallback) -> const std::string {
    inline auto get_env_fallback(const std::string &key, const std::string &fallback)
    -> const std::string {
    const char *val = get_env_fallback(key.c_str(), fallback.c_str());
    auto const result = std::string(val);
    ......
    ......@@ -32,7 +32,7 @@
    #include <memory> // for unique_ptr, allocator, __shared_ptr_...
    #include <string> // for operator<<, char_traits
    auto logger_name = "libcaosdb";
    const auto logger_name = "libcaosdb";
    auto main() -> int {
    ......@@ -56,8 +56,8 @@ auto main() -> int {
    transaction->RetrieveById("120");
    transaction->ExecuteAsynchronously();
    auto t_stat = transaction->WaitForIt();
    CAOSDB_LOG_INFO(logger_name) << "status: " << t_stat.GetCode()
    << " // " << t_stat.GetDescription();
    CAOSDB_LOG_INFO(logger_name) << "status: " << t_stat.GetCode() << " // "
    << t_stat.GetDescription();
    const auto &result_set = transaction->GetResultSet();
    if (result_set.size() > 0) {
    // print information
    ......@@ -80,8 +80,8 @@ auto main() -> int {
    q_transaction->Query(query);
    q_transaction->ExecuteAsynchronously();
    t_stat = q_transaction->WaitForIt();
    CAOSDB_LOG_INFO(logger_name) << "status: " << t_stat.GetCode()
    << " // " << t_stat.GetDescription();
    CAOSDB_LOG_INFO(logger_name) << "status: " << t_stat.GetCode() << " // "
    << t_stat.GetDescription();
    return 0;
    } catch (const caosdb::exceptions::ConfigurationError &exc) {
    std::cout << "ConfigurationError: " << exc.what() << std::endl;
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment