From 61b4f41303cd82975212e9be477be42cfd14f236 Mon Sep 17 00:00:00 2001
From: Takuya ASADA <syuu@cloudius-systems.com>
Date: Wed, 5 Feb 2014 08:23:00 +0900
Subject: [PATCH] Coding style fix for xenfront.cc/hh

Signed-off-by: Takuya ASADA <syuu@cloudius-systems.com>
Signed-off-by: Pekka Enberg <penberg@cloudius-systems.com>
---
 drivers/xenfront.hh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/xenfront.hh b/drivers/xenfront.hh
index 38314065c..b7f88454e 100644
--- a/drivers/xenfront.hh
+++ b/drivers/xenfront.hh
@@ -42,13 +42,13 @@ class xenfront_driver {
 public:
     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_node_path(void) { return _node_path; }
-    const std::string &get_otherend_path(void) { return _otherend_path; };
+    const std::string &get_type() { return _type; }
+    const std::string &get_node_path() { return _node_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 localend_changed(std::string local) { };
-- 
GitLab