mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 20:21:04 +00:00
refactor(cxx): formatted according to IDF astyle rules
This commit is contained in:
@@ -14,11 +14,10 @@ using std::endl;
|
||||
using std::runtime_error;
|
||||
|
||||
/* A simple class which may throw an exception from constructor */
|
||||
class Throwing
|
||||
{
|
||||
class Throwing {
|
||||
public:
|
||||
Throwing(int arg)
|
||||
: m_arg(arg)
|
||||
: m_arg(arg)
|
||||
{
|
||||
cout << "In constructor, arg=" << arg << endl;
|
||||
if (arg == 0) {
|
||||
|
Reference in New Issue
Block a user