Skip to content

Commit

Permalink
Fix all Doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gtremper committed Jun 23, 2015
1 parent 6e726e6 commit 9d03352
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions autowiring/AutoPacketFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ class AutoPacketFactory:
void ResetPacketStatistics(void);
};

// @cond
// Extern explicit template instantiation declarations added to prevent
// exterior instantation of internally used template instances
extern template struct SlotInformationStump<AutoPacketFactory, false>;
Expand All @@ -238,3 +239,4 @@ extern template std::shared_ptr<AutoPacketFactory> autowiring::fast_pointer_cast
extern template class RegType<AutoPacketFactory>;
extern template struct autowiring::fast_pointer_cast_blind<CoreObject, AutoPacketFactory>;
extern template struct autowiring::fast_pointer_cast_initializer<CoreObject, AutoPacketFactory>;
// @endcond
1 change: 0 additions & 1 deletion autowiring/BasicThread.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ struct BasicThreadStateBlock;
class BasicThread;
class CoreContext;

/// \internal (until ElevatePriority feature is implmented on all platforms)
/// <summary>
/// Thread priority classifications from low to high.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion devguide/AutoFilters.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The context forms the boundaries of a filter network. There are two ways around

You can create a filter with any object by implementing a function named AutoFilter. The arguments of the function declares both the input types of the filter and the output types. Const references and arguments passed by value are inputs. Non-const references are output types. The following example creates a class implementing an AutoFilter that takes two inputs and has one output:

\include snippets/AutoFilter_BasicFilter.txt
\include snippets/AutoFilter_BasicAutoFilter.txt

The function is called when instances of types T and Q are added to the packet. On exit from the function, the type W is added to the packet.

Expand Down

0 comments on commit 9d03352

Please sign in to comment.