Skip to content

Commit

Permalink
Fixed compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
blitz committed Dec 19, 2012
1 parent f16ccaf commit 16a50c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/nul/motherboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Motherboard : public StaticReceiver<Motherboard>
/**
* To avoid bugs we disallow the copy constructor.
*/
Motherboard(const Motherboard &bus) { Logging::panic("%s copy constructor called", __func__); }
Motherboard(const Motherboard &) { Logging::panic("%s copy constructor called", __func__); }

public:
DBus<MessageAcpi> bus_acpi;
Expand Down

0 comments on commit 16a50c3

Please sign in to comment.