~thomas-voss/miracast-service/add-controller-stub-and-skeleton

« back to all changes in this revision

Viewing changes to src/mcs/gstsourcemediamanager.cpp

  • Committer: Simon Fels
  • Date: 2015-12-03 11:33:41 UTC
  • mfrom: (91.3.6 pedantic-compiler-flags)
  • Revision ID: simon.fels@canonical.com-20151203113341-05f3ghvs0aa7o8ol
Switch to old boost::ignore_unused_variable_warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 */
17
17
 
18
 
#include <boost/core/ignore_unused.hpp>
 
18
#include <boost/concept_check.hpp>
19
19
 
20
20
#include "gstsourcemediamanager.h"
21
21
 
34
34
}
35
35
 
36
36
gboolean GstSourceMediaManager::OnGstBusEvent(GstBus *bus, GstMessage *message, gpointer data) {
37
 
    boost::ignore_unused(bus, data);
 
37
    boost::ignore_unused_variable_warning(bus);
 
38
    boost::ignore_unused_variable_warning(data);
38
39
    GError *err = NULL;
39
40
    gchar *debug = NULL;
40
41