13
0

NO-OP: re-indent

This commit is contained in:
Robin Gareus 2016-12-14 22:21:11 +01:00
parent 77845f6019
commit 07bcdc7f0a

View File

@ -45,7 +45,7 @@ namespace PBD
class LIBPBD_API EventLoop
{
public:
public:
EventLoop (std::string const&);
virtual ~EventLoop() {}
@ -99,7 +99,7 @@ class LIBPBD_API EventLoop
static void pre_register (const std::string& emitting_thread_name, uint32_t num_requests);
static void remove_request_buffer_from_map (void* ptr);
private:
private:
static Glib::Threads::Private<EventLoop> thread_event_loop;
std::string _name;
@ -110,13 +110,13 @@ class LIBPBD_API EventLoop
struct RequestBufferSupplier {
/* @param name : name of object/entity that will/may accept
requests from other threads, via a request buffer.
* requests from other threads, via a request buffer.
*/
std::string name;
/* @param factory : a function that can be called (with an
argument specifying the @param number_of_requests) to create and
return a request buffer for communicating with @param name)
* argument specifying the @param number_of_requests) to create and
* return a request buffer for communicating with @param name)
*/
void* (*factory)(uint32_t nunber_of_requests);
};