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());
    } }
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment