Skip to content

Commit

Permalink
uncrustify
Browse files Browse the repository at this point in the history
Signed-off-by: jparisu <[email protected]>
  • Loading branch information
jparisu committed Jun 20, 2023
1 parent 9c169dd commit e63b9f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/cpp/security/accesscontrol/DistinguishedName.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ Attribute Attribute::cut(
return res;
}

std::ostream& operator<<(std::ostream& os, const Attribute& att)
std::ostream& operator <<(
std::ostream& os,
const Attribute& att)
{
os.write(att.value, att.length);
return os;
Expand Down
4 changes: 3 additions & 1 deletion src/cpp/security/accesscontrol/DistinguishedName.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ struct Attribute
};

//! To string method for Attribute
std::ostream& operator<<(std::ostream& os, const Attribute& att);
std::ostream& operator <<(
std::ostream& os,
const Attribute& att);

/**
* @brief This class is only used to compare 2 DistinguishedName.
Expand Down

0 comments on commit e63b9f6

Please sign in to comment.