Run clang-format across everything (#7849)

* run clang-format-18 across Code/*.cpp and Code/*.h

* run clang-format-18 across External
This commit is contained in:
Greg Landrum
2024-09-26 13:39:02 +02:00
committed by GitHub
parent f1606cb940
commit da6cd73168
248 changed files with 3532 additions and 3574 deletions

View File

@@ -10,11 +10,9 @@
/* Implementation file */
NS_IMPL_ISUPPORTS1(RDKitImpl, IRDKit)
RDKitImpl::RDKitImpl() { /* member initializers and constructor code */
}
RDKitImpl::RDKitImpl() { /* member initializers and constructor code */ }
RDKitImpl::~RDKitImpl() { /* destructor code */
}
RDKitImpl::~RDKitImpl() { /* destructor code */ }
/* unsigned long strlen (in string arg); */
NS_IMETHODIMP RDKitImpl::Strlen(const char *arg, PRUint32 *_retval) {

View File

@@ -14,7 +14,7 @@ namespace python = boost::python;
class DemoKlass {
public:
explicit DemoKlass(int v) : val_(v){};
explicit DemoKlass(int v) : val_(v) {};
int getVal() const { return val_; };
private: