Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/GuiCallbackContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace o2::framework
{

struct GuiCallbackContext;
class WSDPLHandler;
struct WSDPLHandler;

struct GuiRenderer {
uv_timer_t drawTimer;
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/InitContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace o2::framework
{

class ServiceRegistry;
struct ServiceRegistry;
class ConfigParamRegistry;

// This is a utility class to reduce the amount of boilerplate when defining
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/ServiceRegistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ struct ServiceRegistry {
/// not bonded to a specific stream, e.g. the
/// name of the data processor, its inputs and outputs,
/// it's algorithm.
static Salt dataProcessorSalt(short dataProcessorId)
static Salt dataProcessorSalt(short /* dataProcessorId */)
{
// FIXME: old behaviour for now
// return {0, dataProcessorId};
Expand Down
6 changes: 3 additions & 3 deletions Framework/Core/include/Framework/ServiceSpec.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ struct ProgOptions;
namespace o2::framework
{

struct InitContext;
class InitContext;
struct DeviceSpec;
struct ServiceRegistry;
struct ServiceRegistryRef;
class ServiceRegistryRef;
struct DeviceState;
struct ProcessingContext;
class ProcessingContext;
class EndOfStreamContext;
struct ConfigContext;
struct WorkflowSpecNode;
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/StringHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ constexpr auto get_str(const char (&str)[N])
}

template <int N>
constexpr auto get_size(const char (&str)[N])
constexpr auto get_size(const char (&)[N])
{
return N;
}
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/src/TMessageSerializer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#include <Framework/TMessageSerializer.h>
#include <FairMQTransportFactory.h>
#include <fairmq/TransportFactory.h>
#include <algorithm>
#include <memory>

Expand Down