mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Try to fix build bustage and also fix a couple of new warnings.
This commit is contained in:
parent
ce4d5d65e4
commit
6da2b447fd
@ -120,6 +120,7 @@ private:
|
||||
class BooleanResult : public txAExprResult {
|
||||
|
||||
public:
|
||||
BooleanResult(); // Not to be implemented
|
||||
BooleanResult(MBool aValue);
|
||||
|
||||
TX_DECL_EXPRRESULT
|
||||
@ -131,6 +132,7 @@ private:
|
||||
class NumberResult : public txAExprResult {
|
||||
|
||||
public:
|
||||
NumberResult(); // Not to be implemented
|
||||
NumberResult(double aValue, txResultRecycler* aRecycler);
|
||||
|
||||
TX_DECL_EXPRRESULT
|
||||
@ -142,6 +144,7 @@ public:
|
||||
|
||||
class StringResult : public txAExprResult {
|
||||
public:
|
||||
StringResult();
|
||||
StringResult(txResultRecycler* aRecycler);
|
||||
StringResult(const nsAString& aValue, txResultRecycler* aRecycler);
|
||||
|
||||
|
@ -44,6 +44,8 @@ class NodeSet : public txAExprResult
|
||||
|
||||
public:
|
||||
|
||||
NodeSet(); // Not to be implemented
|
||||
|
||||
/*
|
||||
* Creates a new empty NodeSet
|
||||
*/
|
||||
|
@ -41,8 +41,7 @@
|
||||
|
||||
#include "txIXPathContext.h"
|
||||
#include "nsAutoPtr.h"
|
||||
|
||||
class NodeSet;
|
||||
#include "NodeSet.h"
|
||||
|
||||
class txForwardContext : public txIEvalContext
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user