Build: Warnings

Fixed some compiler warnings, joint ops with ebsi and stalli

review id = 10
This commit is contained in:
Manuel Dobusch
2014-04-30 17:11:12 +02:00
parent ad54b0d1fa
commit 6b82ea6860
8 changed files with 46 additions and 29 deletions
+3 -1
View File
@@ -11,10 +11,12 @@ class TextLocationFile;
class TextLocationLine
{
public:
TextLocationLine(const std::weak_ptr<TextLocationFile>& textLocationFile, unsigned int lineNumber);
TextLocationLine(std::weak_ptr<TextLocationFile> textLocationFile, unsigned int lineNumber);
~TextLocationLine();
unsigned int getLineNumber() const;
private:
const std::weak_ptr<TextLocationFile> m_textLocationFile;
const unsigned int m_lineNumber;