Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nektar
Nektar
Commits
a66c20cb
Commit
a66c20cb
authored
Oct 10, 2014
by
Kilian Lackhove
Browse files
doc: fixed header example in core-concepts.
parent
f25ce714
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/developer-guide/core-concepts/core-concepts.tex
View file @
a66c20cb
...
...
@@ -219,8 +219,8 @@ example shows what is possible using this approach:
\begin{lstlisting}
[style=C++Style]
class Sample
{
public:
Array<OneD, const double>
&
getData() const
{
return m
_
data;
}
void
getData(Array<OneD, const double>
&
out) const
{
out = m
_
data;
}
Array<OneD, const double>
&
getData() const
{
return m
_
data;
}
void
getData(Array<OneD, const double>
&
out) const
{
out = m
_
data;
}
private:
Array<OneD, double> m
_
data;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment