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

MAINT: Linting.

parent 94bbac87
No related branches found
No related tags found
1 merge request!3Full functionality of libcaosdb
Pipeline #13020 passed
Pipeline: caosdb-octaveinttest

#13023

    ......@@ -203,11 +203,10 @@ void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) {
    // << " / "
    // << caosdb::get_status_description(exec_stat);
    if (exec_stat != caosdb::StatusCode::EXECUTING) {
    mexErrMsgIdAndTxt("maox:Execution",
    (string("Executing the transaction failed (") +
    boost::lexical_cast<std::string>(static_cast<int>(exec_stat)) +
    "): " + caosdb::get_status_description(exec_stat))
    .c_str());
    mexErrMsgIdAndTxt("maox:Execution", (string("Executing the transaction failed (") +
    std::to_string(static_cast<int>(exec_stat)) +
    "): " + caosdb::get_status_description(exec_stat))
    .c_str());
    }
    const auto t_stat = transaction->WaitForIt();
    // CAOSDB_LOG_TRACE(logger_name) << "Waited";
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment