Skip to content

Commit

Permalink
style: run clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
kellijohnson-NOAA authored Jan 3, 2025
1 parent 2338d23 commit 24865bd
Show file tree
Hide file tree
Showing 36 changed files with 4,462 additions and 4,495 deletions.
16 changes: 8 additions & 8 deletions inst/include/common/data_object.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <exception>
#include <vector>

#include "model_object.hpp"
#include "fims_vector.hpp"
#include "model_object.hpp"

namespace fims_data_object {

Expand All @@ -21,14 +21,14 @@ namespace fims_data_object {
*/
template <typename Type>
struct DataObject : public fims_model_object::FIMSObject<Type> {
static uint32_t id_g; /**< id of the Data Object >*/
static uint32_t id_g; /**< id of the Data Object >*/
fims::Vector<Type> data; /**< vector of the data >*/
size_t dimensions; /**< dimension of the Data object >*/
size_t imax; /**<1st dimension of data object >*/
size_t jmax; /**< 2nd dimension of data object>*/
size_t kmax; /**< 3rd dimension of data object>*/
size_t lmax; /**< 4th dimension of data object>*/
Type na_value = -999; /**< specifying the NA value >*/
size_t dimensions; /**< dimension of the Data object >*/
size_t imax; /**<1st dimension of data object >*/
size_t jmax; /**< 2nd dimension of data object>*/
size_t kmax; /**< 3rd dimension of data object>*/
size_t lmax; /**< 4th dimension of data object>*/
Type na_value = -999; /**< specifying the NA value >*/

/**
* Constructs a one-dimensional data object.
Expand Down
Loading

0 comments on commit 24865bd

Please sign in to comment.