Skip to content

Commit

Permalink
Merge pull request #68 from epics-base/jenkins_problem
Browse files Browse the repository at this point in the history
another attempt to fix jenkins_problem
  • Loading branch information
mrkraimer committed Apr 3, 2021
2 parents d4a1339 + e91b4b1 commit 716ec98
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ INC += pv/scalarAlarmSupport.h
include $(PVDATABASE_SRC)/copy/Makefile
include $(PVDATABASE_SRC)/database/Makefile
include $(PVDATABASE_SRC)/pvAccess/Makefile
include $(PVDATABASE_SRC)/special/Makefile
include $(PVDATABASE_SRC)/support/Makefile
include $(PVDATABASE_SRC)/special/Makefile

LIBRARY += pvDatabase
pvDatabase_LIBS += pvData
Expand Down
14 changes: 7 additions & 7 deletions src/pvAccess/channelLocal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static bool getProcess(PVStructurePtr pvRequest,bool processDefault)
}

class ChannelProcessLocal :
public ChannelProcess,
public epics::pvAccess::ChannelProcess,
public std::tr1::enable_shared_from_this<ChannelProcessLocal>
{
public:
Expand Down Expand Up @@ -206,7 +206,7 @@ void ChannelProcessLocal::process()
}

class ChannelGetLocal :
public ChannelGet,
public epics::pvAccess::ChannelGet,
public std::tr1::enable_shared_from_this<ChannelGetLocal>
{
public:
Expand Down Expand Up @@ -383,7 +383,7 @@ void ChannelGetLocal::get()
}

class ChannelPutLocal :
public ChannelPut,
public epics::pvAccess::ChannelPut,
public std::tr1::enable_shared_from_this<ChannelPutLocal>
{
public:
Expand Down Expand Up @@ -567,7 +567,7 @@ void ChannelPutLocal::put(


class ChannelPutGetLocal :
public ChannelPutGet,
public epics::pvAccess::ChannelPutGet,
public std::tr1::enable_shared_from_this<ChannelPutGetLocal>
{
public:
Expand Down Expand Up @@ -802,8 +802,8 @@ void ChannelPutGetLocal::getGet()


class ChannelRPCLocal :
public ChannelRPC,
public RPCResponseCallback,
public epics::pvAccess::ChannelRPC,
public epics::pvAccess::RPCResponseCallback,
public std::tr1::enable_shared_from_this<ChannelRPCLocal>
{
public:
Expand Down Expand Up @@ -993,7 +993,7 @@ void ChannelRPCLocal::request(PVStructurePtr const & pvArgument)
typedef std::tr1::shared_ptr<PVArray> PVArrayPtr;

class ChannelArrayLocal :
public ChannelArray,
public epics::pvAccess::ChannelArray,
public std::tr1::enable_shared_from_this<ChannelArrayLocal>
{
public:
Expand Down

0 comments on commit 716ec98

Please sign in to comment.