Skip to content
Snippets Groups Projects
Commit 61b4f413 authored by Takuya ASADA's avatar Takuya ASADA Committed by Pekka Enberg
Browse files

Coding style fix for xenfront.cc/hh

parent f1a6232d
No related branches found
No related tags found
No related merge requests found
...@@ -42,13 +42,13 @@ class xenfront_driver { ...@@ -42,13 +42,13 @@ class xenfront_driver {
public: public:
explicit xenfront_driver(xenbus *bus); explicit xenfront_driver(xenbus *bus);
const std::string get_name(void) { return _driver_name; } const std::string get_name() { return _driver_name; }
const std::string &get_type(void) { return _type; } const std::string &get_type() { return _type; }
const std::string &get_node_path(void) { return _node_path; } const std::string &get_node_path() { return _node_path; }
const std::string &get_otherend_path(void) { return _otherend_path; }; const std::string &get_otherend_path() { return _otherend_path; };
const int get_otherend_id(void) { return _otherend_id; } const int get_otherend_id() { return _otherend_id; }
void set_ivars(struct xenbus_device_ivars *ivars); void set_ivars(struct xenbus_device_ivars *ivars);
void localend_changed(std::string local) { }; void localend_changed(std::string local) { };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment