mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
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:
@@ -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) {
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user