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

DOC: README_SETUP.md updated, some formatting.

parent 120bd912
No related branches found
No related tags found
1 merge request!19Switch integer values to int32
Pipeline #12636 passed
Pipeline: caosdb-cppinttest

#12637

    ...@@ -50,7 +50,7 @@ as compiler. We use [cmake](https://cmake.org/download/) as build tool. ...@@ -50,7 +50,7 @@ as compiler. We use [cmake](https://cmake.org/download/) as build tool.
    ### Creating a Local Conan Package ## ### Creating a Local Conan Package ##
    Building and installing libcaosdb with Conan is just a single command: `make conan-install` Building and installing libcaosdb with Conan is just a single command: `make conan`
    For MacOS, you probably should adjust the option as mentioned above. For MacOS, you probably should adjust the option as mentioned above.
    ......
    ...@@ -366,8 +366,8 @@ public: ...@@ -366,8 +366,8 @@ public:
    [[nodiscard]] inline auto GetResultSet() const noexcept -> const ResultSet & { [[nodiscard]] inline auto GetResultSet() const noexcept -> const ResultSet & {
    if (!this->result_set) { if (!this->result_set) {
    this->result_set = std::make_unique<MultiResultSet>( this->result_set =
    std::move(std::vector<std::unique_ptr<Entity>>())); std::make_unique<MultiResultSet>(std::move(std::vector<std::unique_ptr<Entity>>()));
    } }
    return *(this->result_set.get()); return *(this->result_set.get());
    } }
    ......
    ...@@ -17,14 +17,14 @@ ...@@ -17,14 +17,14 @@
    * You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
    * along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
    */ */
    #include "caosdb/configuration.h" // for InsecureConnectionConfig... #include "caosdb/configuration.h" // for InsecureConnectionConfig...
    #include "caosdb/connection.h" // for Connection #include "caosdb/connection.h" // for Connection
    #include "caosdb/exceptions.h" // for ConnectionError #include "caosdb/exceptions.h" // for ConnectionError
    #include "caosdb/status_code.h" #include "caosdb/status_code.h"
    #include "caosdb/transaction.h" // for Transaction #include "caosdb/transaction.h" // for Transaction
    #include <gtest/gtest-message.h> // for Message #include <gtest/gtest-message.h> // for Message
    #include <gtest/gtest-test-part.h> // for SuiteApiResolver, TestPa... #include <gtest/gtest-test-part.h> // for SuiteApiResolver, TestPa...
    #include <gtest/gtest_pred_impl.h> // for Test, TestInfo, TEST #include <gtest/gtest_pred_impl.h> // for Test, TestInfo, TEST
    namespace caosdb::transaction { namespace caosdb::transaction {
    using caosdb::configuration::InsecureConnectionConfiguration; using caosdb::configuration::InsecureConnectionConfiguration;
    ......
    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