Skip to content
Snippets Groups Projects
Verified Commit 866df170 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

STY: formatting

parent 3d181764
No related branches found
No related tags found
2 merge requests!33Release 0.1,!30Debug build
Pipeline #16208 passed
Pipeline: caosdb-cppinttest

#16210

    ......@@ -23,7 +23,7 @@
    #ifndef CAOSDB_CONSTANTS_H
    #define CAOSDB_CONSTANTS_H
    #ifndef __GNUC__
    # define __attribute__(x)
    #define __attribute__(x)
    #endif
    #ifdef __cplusplus
    namespace caosdb {
    ......
    ......@@ -41,7 +41,7 @@
    #include <grpcpp/impl/codegen/completion_queue.h> // for CompletionQueue
    #include <map> // for map, operator!=
    #include <memory> // for unique_ptr
    #include <random> // for mt19937, rand...
    #include <random> // for mt19937, rand...
    #include <sstream>
    #include <utility> // for move, pair
    ......@@ -148,7 +148,7 @@ auto get_next_file_id() -> std::string {
    const std::string str = "0123456789abcdef";
    std::mt19937 generator(std::random_device{}());
    std::uniform_int_distribution<int> distribution(0, 15); // NOLINT
    std::string result(10, '\0'); // NOLINT
    std::string result(10, '\0'); // NOLINT
    for (auto &dis : result) {
    dis = str[distribution(generator)];
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment