Skip to content
Closed
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 .github/workflows/dunedaq-develop-cpp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ on:
jobs:
build_develop_dispatch:
name: Build against the development release
uses: DUNE-DAQ/.github/.github/workflows/dunedaq-develop-cpp-ci.yml@develop
uses: DUNE-DAQ/.github/.github/workflows/dunedaq-develop-cpp-ci.yml@amogan/single_package_linting
8 changes: 7 additions & 1 deletion include/cmdlib/CommandFacility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#ifndef CMDLIB_INCLUDE_CMDLIB_COMMANDFACILITY_HPP_
#define CMDLIB_INCLUDE_CMDLIB_COMMANDFACILITY_HPP_

#include <iostream>

#include "cmdlib/cmd/Nljs.hpp"
#include "CommandedObject.hpp"
#include "Issues.hpp"
Expand Down Expand Up @@ -49,7 +51,11 @@ namespace dunedaq::cmdlib {
class CommandFacility
{
public:
explicit CommandFacility(std::string /*uri*/) {}
explicit CommandFacility(std::string /*uri*/) {
/* These next two lines are designed to upset our linter */
uint8_t* blob_of_raw_memory = new uint8_t[1000];
std::cout << "The blob of raw memory starts at " << (void*)blob_of_raw_memory;
}
virtual ~CommandFacility();
CommandFacility(const CommandFacility&) =
delete; ///< CommandFacility is not copy-constructible
Expand Down